<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techibee.com &#187; Sysadmin</title>
	<atom:link href="http://techibee.com/category/sysadmins/feed" rel="self" type="application/rss+xml" />
	<link>http://techibee.com</link>
	<description>A System Administrator&#039;s Blog</description>
	<lastBuildDate>Mon, 21 May 2012 14:13:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Microsoft Script Explorer for Windows PowerShell (pre-release)</title>
		<link>http://techibee.com/powershell/microsoft-script-explorer-for-windows-powershell-pre-release/1574?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-script-explorer-for-windows-powershell-pre-release</link>
		<comments>http://techibee.com/powershell/microsoft-script-explorer-for-windows-powershell-pre-release/1574#comments</comments>
		<pubDate>Wed, 11 Apr 2012 10:22:57 +0000</pubDate>
		<dc:creator>Uma Padmavathi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Microsoft Script Explorer for Windows PowerShell]]></category>
		<category><![CDATA[Script Explorer]]></category>
		<category><![CDATA[Windows PowerShell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1574</guid>
		<description><![CDATA[Would it not be helpful if all scripts are at one place and you can navigate/browse them through single window? Microsoft team is working on a tool called Script Explorer for Windows Powershell. Go through below link for more details. http://blogs.technet.com/b/exchange/archive/2012/03/14/check-out-microsoft-script-explorer-for-windows-powershell-pre-release.aspx]]></description>
			<content:encoded><![CDATA[<p>Would it not be helpful if all scripts are at one place and you can navigate/browse them through single window?<br />
Microsoft team is working on a tool called <em><strong>Script Explorer for Windows Powershell</strong></em>.</p>
<p>Go through below link for more details.</p>
<p><a title="Microsoft Script Explorer for Windows PowerShell (pre-release)" href="http://blogs.technet.com/b/exchange/archive/2012/03/14/check-out-microsoft-script-explorer-for-windows-powershell-pre-release.aspx">http://blogs.technet.com/b/exchange/archive/2012/03/14/check-out-microsoft-script-explorer-for-windows-powershell-pre-release.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/microsoft-script-explorer-for-windows-powershell-pre-release/1574/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to know the switch name to which your server is connected</title>
		<link>http://techibee.com/sysadmins/how-to-know-the-switch-name-to-which-your-server-is-connected/1568?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-know-the-switch-name-to-which-your-server-is-connected</link>
		<comments>http://techibee.com/sysadmins/how-to-know-the-switch-name-to-which-your-server-is-connected/1568#comments</comments>
		<pubDate>Tue, 03 Apr 2012 18:42:05 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[find ethernet port on switch]]></category>
		<category><![CDATA[find out the server switch connected]]></category>
		<category><![CDATA[how to get windows server network port]]></category>
		<category><![CDATA[how to get windows server switch]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1568</guid>
		<description><![CDATA[I came across a situation today where I had to find out the switch details to which a particular server is connected. Often we come across such kind of cases where your network administrator is unavailable to tell you which switch/port it is or data center engineer not around to help you with this information. [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a situation today where I had to find out the switch details to which a particular server is connected. Often we come across such kind of cases where your network administrator is unavailable to tell you which switch/port it is or data center engineer not around to help you with this information.</p>
<p>After thinking about this problem for sometime, one thing clicked in my mind. I remember in VMWare ESX environment, I used CDP(Cisco Discovery protocol) abilities from Virtual center to find out to which switch a NIC is connected. That means all I need to do is, get this CDP information from the switch to which my server NIC/network connection is connected to. So, the question remained is, how do we send the CDP request to the switch, and how to analyze that data.</p>
<p>I did some googling and realized that I am not alone in this world and there are several people who are having similar requirements for different purposes. Then I started looking for CDP utilities for windows operating system and located one &#8212; CDP Monitor from TellSoft. I have seen a few people recommended using this in some forums. I didn&#8217;t try it personally but you may want to look at this tool. You can get it from <a href="http://www.tallsoft.com/cdpmonitor.htm">http://www.tallsoft.com/cdpmonitor.htm</a></p>
<p>I didn&#8217;t try this tool directly but while going through the information about this tool, I saw somewhere it is mentioned that this uses WinPCAP and fetches the CDP information from that. Then I thought, if it is using WinPCAP why not use Wireshark to get this information? This tool is already available on my server(because it is a much have tool for any deep dives). I captured the network traffic on the server for sometime using Wireshark and looked for the filters that can show only the CDP information and I am successful. I have got the switch details I needed.</p>
<p><strong>Below is the brief procedure:</strong></p>
<ol>
<li>Download and install Wireshark from <a href="http://www.wireshark.org/download.html">http://www.wireshark.org/download.html</a></li>
<li>Launch Wireshark and start capturing the traffic on interface for which you need to find the swtich and port details.</li>
<li>Let the capture run for few minutes and then in <strong>Filter</strong> section type <strong>CDP</strong> and click on <strong>Apply</strong>.</li>
<li>This will show the CDP traffic flow through the server</li>
<li>Now select the CDP traffic and expand <strong>Cisco Discovery Protocol</strong> section in packet details pane.</li>
<li>Here the the <strong>Device</strong> ID represents the switch name to which your server connected</li>
<li>And the <strong>Port ID</strong> represents the ethernet port on switch to which your server is connected</li>
</ol>
<p>Hmm&#8230; I found what I need. I thought documenting this will help other as well and hence authored this port. Feel free to comment.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/sysadmins/how-to-know-the-switch-name-to-which-your-server-is-connected/1568/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Microsoft TechEd India 2012 Live</title>
		<link>http://techibee.com/general/teched-india-2012-live/1545?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=teched-india-2012-live</link>
		<comments>http://techibee.com/general/teched-india-2012-live/1545#comments</comments>
		<pubDate>Mon, 19 Mar 2012 18:31:44 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[TechEd India 2012]]></category>
		<category><![CDATA[TechEd India 2012 online]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1545</guid>
		<description><![CDATA[If you are in INDIA and cannot attend TechEd 2012 for some commute or any different reasons, there is an opportunity for you to attend all TechEd sessions from your desk itself. Microsoft has made TechEd India 2010 online to busy admins and tech enthusiasts. All you need to do is visit below link and [...]]]></description>
			<content:encoded><![CDATA[<p>If you are in INDIA and cannot attend TechEd 2012 for some commute or any different reasons, there is an opportunity for you to attend all TechEd sessions from your desk itself. Microsoft has made TechEd India 2010 online to busy admins and tech enthusiasts. All you need to do is visit below link and register yourself.</p>
<blockquote><p><span style="color: #0000ff;"><strong><a href="https://india.msteched.com/TechEdLive"><span style="color: #0000ff;">https://india.msteched.com/TechEdLive</span></a></strong></span></p></blockquote>
<p>You can follow all TechEd India 2012 sessions include keynotes, demos, etc.</p>
<p><a href="http://techibee.com/wp-content/uploads/2012/03/techedindia2012.png"><img class="aligncenter size-full wp-image-1546" title="techedindia2012" src="http://techibee.com/wp-content/uploads/2012/03/techedindia2012.png" alt="" width="775" height="514" /></a></p>
<p>If you find any session interesting for System administrators, then please do share the details in comments sections so that others can follow it.</p>
<p>Hope this helps&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/general/teched-india-2012-live/1545/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip: How to open a program as administrator</title>
		<link>http://techibee.com/sysadmins/tip-how-to-open-a-program-as-administrator/1395?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tip-how-to-open-a-program-as-administrator</link>
		<comments>http://techibee.com/sysadmins/tip-how-to-open-a-program-as-administrator/1395#comments</comments>
		<pubDate>Sun, 19 Feb 2012 17:24:57 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1395</guid>
		<description><![CDATA[Hi Readers, Before signing out today, I wanna share a quick tip that you can use in windows 7 or windows 2008 computers to open any program with administrator account. That means elevating a applications. You might want to ask, isn&#8217;t it easy to right click and say &#8220;Run As Administrator&#8221;?. Well, that option you [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Readers,</p>
<p>Before signing out today, I wanna share a quick tip that you can use in windows 7 or windows 2008 computers to open any program with administrator account. That means elevating a applications. You might want to ask, isn&#8217;t it easy to right click and say &#8220;Run As Administrator&#8221;?. Well, that option you won&#8217;t get for all applications. Give a try with Office applications if you want to observe this. In such cases, one need to open a elevated command prompt and launch the application from there which is somewhat time consuming. Instead you can use the below tip.</p>
<p><strong>Hold Ctrl + Shift and then click on the application.</strong> It will automatically try to open in elevated mode.</p>
<p>Hope this helps and happy learning.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/sysadmins/tip-how-to-open-a-program-as-administrator/1395/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell: Script to query softwares installed on remote computer</title>
		<link>http://techibee.com/powershell/powershell-script-to-query-softwares-installed-on-remote-computer/1389?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=powershell-script-to-query-softwares-installed-on-remote-computer</link>
		<comments>http://techibee.com/powershell/powershell-script-to-query-softwares-installed-on-remote-computer/1389#comments</comments>
		<pubDate>Sat, 18 Feb 2012 10:40:09 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[get installed software]]></category>
		<category><![CDATA[installed software]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[ps script for softwares]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1389</guid>
		<description><![CDATA[Recently I came across a forum question where I have seen people using Win32_Product WMI class to get the installed installed applications list from remote computers. Historically, Win32_Product proved to be a buggy one due to various factors (which I will talk in later posts). So, I didn&#8217;t recommend them to use Win32_Product WMI class. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I came across a forum question where I have seen people using Win32_Product WMI class to get the installed installed applications list from remote computers. Historically, Win32_Product proved to be a buggy one due to various factors (which I will talk in later posts). So, I didn&#8217;t recommend them to use Win32_Product WMI class. If not WMI, what are the various options available to get the installed problems from remote computers. There are two methods (1) Using Win32Reg_AddRemovePrograms (2) Using Registry(uninstallkey).</p>
<p>The Win32Reg_AddRemovePrograms is not a common WMI class that you will find in any windows computer. It comes along with SMS or SCCM agent installation. So if you have one of these agents then probably you can explore this method. Otherwise, we need to rely on registry to get this information. Is the information queried from registry is accurate? My answer is YES and NO. It gives all the applications installed by both MSI installer and executables. But some of the registry keys will have less information about the software &#8212; not sure why it is that way.</p>
<p>Keeping the downsides aside, it is definitely the best approach to get installed softwares from remote computer. I am also excluding the applications from display if their display name black(which makes sense). This script will return the uninstall string as well which is essential for uninstalling the software. I will use this in my upcoming posts to uninstall a software remotely.</p>
<p>Now Code follows.</p>
<pre class="PowerShellColorizedScript"><span style="color: #a9a9a9;">[</span><span style="color: #add8e6;">cmdletbinding</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><span style="color: #a9a9a9;">]</span>            

<span style="color: #a9a9a9;">[</span><span style="color: #add8e6;">cmdletbinding</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><span style="color: #a9a9a9;">]</span>
<span style="color: #00008b;">param</span><span style="color: #000000;">(</span>
 <span style="color: #a9a9a9;">[</span><span style="color: #add8e6;">parameter</span><span style="color: #000000;">(</span><span style="color: #000000;">ValueFromPipeline</span><span style="color: #a9a9a9;">=</span><span style="color: #ff4500;">$true</span><span style="color: #a9a9a9;">,</span><span style="color: #000000;">ValueFromPipelineByPropertyName</span><span style="color: #a9a9a9;">=</span><span style="color: #ff4500;">$true</span><span style="color: #000000;">)</span><span style="color: #a9a9a9;">]</span>
 <span style="color: #008080;">[string[]]</span><span style="color: #ff4500;">$ComputerName</span> <span style="color: #a9a9a9;">=</span> <span style="color: #ff4500;">$env:computername</span>            

<span style="color: #000000;">)</span>            

<span style="color: #00008b;">begin</span> <span style="color: #000000;">{</span>
 <span style="color: #ff4500;">$UninstallRegKey</span><span style="color: #a9a9a9;">=</span><span style="color: #8b0000;">"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall"</span>
<span style="color: #000000;">}</span>            

<span style="color: #00008b;">process</span> <span style="color: #000000;">{</span>
 <span style="color: #00008b;">foreach</span><span style="color: #000000;">(</span><span style="color: #ff4500;">$Computer</span> <span style="color: #00008b;">in</span> <span style="color: #ff4500;">$ComputerName</span><span style="color: #000000;">)</span> <span style="color: #000000;">{</span>
  <span style="color: #0000ff;">Write-Verbose</span> <span style="color: #8b0000;">"Working on $Computer"</span>
  <span style="color: #00008b;">if</span><span style="color: #000000;">(</span><span style="color: #0000ff;">Test-Connection</span> <span style="color: #000080;">-ComputerName</span> <span style="color: #ff4500;">$Computer</span> <span style="color: #000080;">-Count</span> <span style="color: #800080;">1</span> <span style="color: #000080;">-ea</span> <span style="color: #800080;">0</span><span style="color: #000000;">)</span> <span style="color: #000000;">{</span>
   <span style="color: #ff4500;">$HKLM</span>   <span style="color: #a9a9a9;">=</span> <span style="color: #008080;">[microsoft.win32.registrykey]</span><span style="color: #a9a9a9;">::</span><span style="color: #000000;">OpenRemoteBaseKey</span><span style="color: #000000;">(</span><span style="color: #8b0000;">'LocalMachine'</span><span style="color: #a9a9a9;">,</span><span style="color: #ff4500;">$computer</span><span style="color: #000000;">)</span>
   <span style="color: #ff4500;">$UninstallRef</span>  <span style="color: #a9a9a9;">=</span> <span style="color: #ff4500;">$HKLM</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">OpenSubKey</span><span style="color: #000000;">(</span><span style="color: #ff4500;">$UninstallRegKey</span><span style="color: #000000;">)</span>
   <span style="color: #ff4500;">$Applications</span> <span style="color: #a9a9a9;">=</span> <span style="color: #ff4500;">$UninstallRef</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">GetSubKeyNames</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span>            

   <span style="color: #00008b;">foreach</span> <span style="color: #000000;">(</span><span style="color: #ff4500;">$App</span> <span style="color: #00008b;">in</span> <span style="color: #ff4500;">$Applications</span><span style="color: #000000;">)</span> <span style="color: #000000;">{</span>
    <span style="color: #ff4500;">$AppRegistryKey</span>  <span style="color: #a9a9a9;">=</span> <span style="color: #ff4500;">$UninstallRegKey</span> <span style="color: #a9a9a9;">+</span> <span style="color: #8b0000;">"\\"</span> <span style="color: #a9a9a9;">+</span> <span style="color: #ff4500;">$App</span>
    <span style="color: #ff4500;">$AppDetails</span>   <span style="color: #a9a9a9;">=</span> <span style="color: #ff4500;">$HKLM</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">OpenSubKey</span><span style="color: #000000;">(</span><span style="color: #ff4500;">$AppRegistryKey</span><span style="color: #000000;">)</span>
    <span style="color: #ff4500;">$AppGUID</span>   <span style="color: #a9a9a9;">=</span> <span style="color: #ff4500;">$App</span>
    <span style="color: #ff4500;">$AppDisplayName</span>  <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">$(</span><span style="color: #ff4500;">$AppDetails</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">GetValue</span><span style="color: #000000;">(</span><span style="color: #8b0000;">"DisplayName"</span><span style="color: #000000;">)</span><span style="color: #000000;">)</span>
    <span style="color: #ff4500;">$AppVersion</span>   <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">$(</span><span style="color: #ff4500;">$AppDetails</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">GetValue</span><span style="color: #000000;">(</span><span style="color: #8b0000;">"DisplayVersion"</span><span style="color: #000000;">)</span><span style="color: #000000;">)</span>
    <span style="color: #ff4500;">$AppPublisher</span>  <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">$(</span><span style="color: #ff4500;">$AppDetails</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">GetValue</span><span style="color: #000000;">(</span><span style="color: #8b0000;">"Publisher"</span><span style="color: #000000;">)</span><span style="color: #000000;">)</span>
    <span style="color: #ff4500;">$AppInstalledDate</span> <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">$(</span><span style="color: #ff4500;">$AppDetails</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">GetValue</span><span style="color: #000000;">(</span><span style="color: #8b0000;">"InstallDate"</span><span style="color: #000000;">)</span><span style="color: #000000;">)</span>
    <span style="color: #ff4500;">$AppUninstall</span>  <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">$(</span><span style="color: #ff4500;">$AppDetails</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">GetValue</span><span style="color: #000000;">(</span><span style="color: #8b0000;">"UninstallString"</span><span style="color: #000000;">)</span><span style="color: #000000;">)</span>
    <span style="color: #00008b;">if</span><span style="color: #000000;">(</span><span style="color: #a9a9a9;">!</span><span style="color: #ff4500;">$AppDisplayName</span><span style="color: #000000;">)</span> <span style="color: #000000;">{</span> <span style="color: #00008b;">continue</span> <span style="color: #000000;">}</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">=</span> <span style="color: #0000ff;">New-Object</span> <span style="color: #000080;">-TypeName</span> <span style="color: #8a2be2;">PSobject</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">Add-Member</span> <span style="color: #000080;">-MemberType</span> <span style="color: #8a2be2;">NoteProperty</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">ComputerName</span> <span style="color: #000080;">-Value</span> <span style="color: #ff4500;">$Computer</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">ToUpper</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">Add-Member</span> <span style="color: #000080;">-MemberType</span> <span style="color: #8a2be2;">NoteProperty</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">AppName</span> <span style="color: #000080;">-Value</span> <span style="color: #ff4500;">$AppDisplayName</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">Add-Member</span> <span style="color: #000080;">-MemberType</span> <span style="color: #8a2be2;">NoteProperty</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">AppVersion</span> <span style="color: #000080;">-Value</span> <span style="color: #ff4500;">$AppVersion</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">Add-Member</span> <span style="color: #000080;">-MemberType</span> <span style="color: #8a2be2;">NoteProperty</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">AppVendor</span> <span style="color: #000080;">-Value</span> <span style="color: #ff4500;">$AppPublisher</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">Add-Member</span> <span style="color: #000080;">-MemberType</span> <span style="color: #8a2be2;">NoteProperty</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">InstalledDate</span> <span style="color: #000080;">-Value</span> <span style="color: #ff4500;">$AppInstalledDate</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">Add-Member</span> <span style="color: #000080;">-MemberType</span> <span style="color: #8a2be2;">NoteProperty</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">UninstallKey</span> <span style="color: #000080;">-Value</span> <span style="color: #ff4500;">$AppUninstall</span>
    <span style="color: #ff4500;">$OutputObj</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">Add-Member</span> <span style="color: #000080;">-MemberType</span> <span style="color: #8a2be2;">NoteProperty</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">AppGUID</span> <span style="color: #000080;">-Value</span> <span style="color: #ff4500;">$AppGUID</span>
    <span style="color: #ff4500;">$OutputObj</span><span style="color: #006400;"># | Select ComputerName, DriveName</span>
   <span style="color: #000000;">}</span>
  <span style="color: #000000;">}</span>
 <span style="color: #000000;">}</span>
<span style="color: #000000;">}</span>            

<span style="color: #00008b;">end</span> <span style="color: #000000;">{</span><span style="color: #000000;">}</span></pre>
<p>Copy this code to a text file and save it as Get-InstalledSoftware.ps1. Look at the below image for usage.</p>
<p><img src="data:image/png;base64,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" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-script-to-query-softwares-installed-on-remote-computer/1389/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>FIX: DFS Replication failed to register itself with WMI.</title>
		<link>http://techibee.com/sysadmins/fix-dfs-replication-failed-to-register-itself-with-wmi/1353?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fix-dfs-replication-failed-to-register-itself-with-wmi</link>
		<comments>http://techibee.com/sysadmins/fix-dfs-replication-failed-to-register-itself-with-wmi/1353#comments</comments>
		<pubDate>Tue, 14 Feb 2012 17:36:58 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[dfsr]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows troubleshooting techniques]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1353</guid>
		<description><![CDATA[You might get alerts your DFS-R management pack in SCOM about the DFS-R service inability to register itself with WMI and it can impact the replication. Exact error message is given below. DFS Replication failed to register itself with WMI. Replication is disabled until WMI registration succeeds. To resolve this issue, you may need to [...]]]></description>
			<content:encoded><![CDATA[<p>You might get alerts your DFS-R management pack in SCOM about the DFS-R service inability to register itself with WMI and it can impact the replication. Exact error message is given below.</p>
<blockquote><p><span style="color: #800000;"><em>DFS Replication failed to register itself with WMI. Replication is disabled until WMI registration succeeds.</em></span></p></blockquote>
<p>To resolve this issue, you may need to re-register DFS-R related DLL and other files that belongs to WMI. Before going there, just restart your DFS-R service once to confirm that your problem is not transient and happening all time. You will notice a error message with 6104 event ID in <strong>DFS Replication</strong> event log after you restart the service. If this event is present, then problem is live and you should fix it.</p>
<p>The following solution worked for me.</p>
<blockquote><p><span style="color: #800000;"><em>CD %windir%\system32\wbem</em></span></p>
<p><span style="color: #800000;"><em>mofcomp dfsrprov.mof</em></span></p>
<p><span style="color: #800000;"><em>mofcomp dfsrprov.mfl</em></span></p>
<p><span style="color: #800000;"><em>wmiprvse /regserver</em></span></p>
<p><span style="color: #800000;"><em>net stop dfsr</em></span></p>
<p><span style="color: #800000;"><em>net start dfsr</em></span></p></blockquote>
<p>All it does is re-register the WMI related files of DFS-R.</p>
<p>If you still notice issues, you may want to re-register everything under WBEM folder. This was suggested in <a href="http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/47bc8802-56ce-495b-853e-7898c0f9e676/">Technet Forum</a>.</p>
<blockquote><p><span style="color: #800000;"><em>CD %windir%\system32\wbem</em></span><br />
<span style="color: #800000;"><em> For /f %s in (&#8216;dir /b /s *.dll&#8217;) do regsvr32 /s %s</em></span><br />
<span style="color: #800000;"><em> for /f %s in (&#8216;dir /b *.mof *.mfl&#8217;) do mofcomp %s</em></span><br />
<span style="color: #800000;"><em> wmiprvse /regserver</em></span><br />
<span style="color: #800000;"><em> net stop dfsr</em></span><br />
<span style="color: #800000;"><em> net start dfsr</em></span></p>
<p>if the problem is still not resolved, try rebooting the DFS-R server.</p></blockquote>
<p>Sometimes, the compilation of MOF files might fail with below errors while performing above steps. In such cases, <a href="http://support.microsoft.com/kb/841619">http://support.microsoft.com/kb/841619</a> might help you.</p>
<blockquote><p><span style="color: #800000;"><em>C:\WINNT\system32\wbem&gt;mofcomp dfsrprov.mof</em></span><br />
<span style="color: #800000;"><em> Microsoft (R) 32-bit MOF Compiler Version 5.2.3790.3959</em></span><br />
<span style="color: #800000;"><em> Copyright (c) Microsoft Corp. 1997-2001. All rights reserved.</em></span><br />
<span style="color: #800000;"><em> Parsing MOF file: dfsrprov.mof</em></span><br />
<span style="color: #800000;"><em> MOF file has been successfully parsed</em></span><br />
<span style="color: #800000;"><em> Storing data in the repository&#8230;</em></span><br />
<span style="color: #800000;"><em> An error occurred while opening the namespace for object 1 defined on lines 4 -</em></span><br />
<span style="color: #800000;"><em> 4:</em></span><br />
<span style="color: #800000;"><em> Error Number: 0x8007000e, Facility: Win32</em></span><br />
<span style="color: #800000;"><em> Description: Not enough storage is available to complete this operation.</em></span><br />
<span style="color: #800000;"><em> Compiler returned error 0x8007000e</em></span></p></blockquote>
<p>A few more reference that might be useful for troubleshooting the issue:</p>
<ol>
<li>DFSR Does Not Replicate Temporary Files : <a href="http://blogs.technet.com/b/askds/archive/2008/11/11/dfsr-does-not-replicate-temporary-files.aspx">http://blogs.technet.com/b/askds/archive/2008/11/11/dfsr-does-not-replicate-temporary-files.aspx</a></li>
<li><a href="http://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/b8a8f0e6-9fcb-4a98-9951-bce109927dc8/">http://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/b8a8f0e6-9fcb-4a98-9951-bce109927dc8/</a></li>
</ol>
<p>Thanks for reading my rambling. I wrote this for my quick reference and to help people who is searching for similar information.</p>
<p><strong>WARNING:</strong> Above steps involves re-registration of WMI providers. So, test them in your lab and try in production at your own risk. I am not responsible for any damage that caused by above procedure.</p>
<p>Hope this helps&#8230;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/sysadmins/fix-dfs-replication-failed-to-register-itself-with-wmi/1353/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use https for safe tweeting</title>
		<link>http://techibee.com/sysadmins/use-https-for-safe-tweeting/1040?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-https-for-safe-tweeting</link>
		<comments>http://techibee.com/sysadmins/use-https-for-safe-tweeting/1040#comments</comments>
		<pubDate>Wed, 30 Nov 2011 17:29:20 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1040</guid>
		<description><![CDATA[Hello Readers, How many of you regularly use twitter? I guess most of you. Have ever worried about the security it is providing? You should read on if your answer is NO. One of colleagues gave a quick demo a few days back to show how insecure the default twitter is. His demo proved that, [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Readers,<br />
How many of you regularly use twitter? I guess most of you. Have ever worried about the security it is providing? You should read on if your answer is NO.</p>
<p>One of colleagues gave a quick demo a few days back to show how insecure the default twitter is. His demo proved that, any one sitting in same network as yours can easily hijack your twitter account and tweet on behalf of you. He was able to make it because twitter runs on http by default. Since it is http, all the data transfer will happen over wire in plain text format. So, any one in your network with a couple of  tools can spoof your MAC address can easily capture what you are sending over wire and get the twitter cookie(key for maintaining your twitter session) and tweet using your twitter account. The method that my colleague demonstrated is a simple hack any one with computer knowledge can execute it.</p>
<p><strong>How to I make it secure: </strong> Twitter provides a option to make your twitter account to use https(secure http) as default protocol. Making use of this will at least prevent your twitter account from this kind of silly hacks.</p>
<p>You can follow the below procedure to enable the https</p>
<ul>
<li>Logon to twitter account.</li>
<li>Go to your profile tab and click on edit profile</li>
<li>Go to Account section in your profile and check the box Always use HTTPS</li>
<li>Click on Save and enter your password when prompted</li>
</ul>
<p><a href="http://techibee.com/wp-content/uploads/2011/11/twitter_https.png"><img class="aligncenter size-full wp-image-1225" title="twitter_https" src="http://techibee.com/wp-content/uploads/2011/11/twitter_https.png" alt="" width="608" height="157" /></a></p>
<ul>
<li>Now your twitter account is secured.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/sysadmins/use-https-for-safe-tweeting/1040/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: Quick and easy to start stop a remote service</title>
		<link>http://techibee.com/powershell/powershell-quick-and-easy-to-start-stop-a-remote-service/1201?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=powershell-quick-and-easy-to-start-stop-a-remote-service</link>
		<comments>http://techibee.com/powershell/powershell-quick-and-easy-to-start-stop-a-remote-service/1201#comments</comments>
		<pubDate>Tue, 22 Nov 2011 14:14:35 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[restart service on remote computer]]></category>
		<category><![CDATA[start service without powershell remoting]]></category>
		<category><![CDATA[start services]]></category>
		<category><![CDATA[start services on remote computer powershell]]></category>
		<category><![CDATA[stop services]]></category>
		<category><![CDATA[stop services on remote computer powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1201</guid>
		<description><![CDATA[Do you like one liners in powershell? Here is the quick and easy way to start, stop, restart a service on remote computer. This doesn&#8217;t require PowerShell remoting. That means you can use it against any computer which has windows operating system installed. So far I have authored two articles on managing services using powershell: [...]]]></description>
			<content:encoded><![CDATA[<p>Do you like one liners in powershell? Here is the quick and easy way to start, stop, restart a service on remote computer. This doesn&#8217;t require PowerShell remoting. That means you can use it against any computer which has windows operating system installed.</p>
<p>So far I have authored two articles on managing services using powershell:</p>
<ol>
<li><a href="http://techibee.com/powershell/startstoprestart-service-on-remote-computer-with-powershell/693">Start/Stop/Restart service on remote computer with powershell</a></li>
<li><a href="http://techibee.com/powershell/powershell-start-and-stop-services-on-remote-computer-with-alternate-credentials/1171">PowerShell: Start and stop services on remote computer with alternate credentials</a></li>
</ol>
<p>The first one I wrote when I was not matured enough with PowerShell and the second one recently to address a specific requirement where user need to pass alternate credentials to manage services.</p>
<p>As most system administrators love to use poweshell one-liners which avoids any external script/module invocation, I want to share this little one which starts, stops, and restarts a service on remote computer.</p>
<p>Start a service on remote computer:</p>
<pre class="PowerShellColorizedScript"><span style="color: #0000ff;">Start-Service</span> <span style="color: #000080;">-InputObject</span> <span style="color: #000000;">$(</span><span style="color: #0000ff;">Get-Service</span> <span style="color: #000080;">-Computer</span> <span style="color: #8a2be2;">COMPUTER1</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">spooler</span><span style="color: #000000;">)</span></pre>
<p>Stop a service on remote computer:</p>
<pre class="PowerShellColorizedScript"><span style="color: #0000ff;">Stop-Service</span> <span style="color: #000080;">-InputObject</span> <span style="color: #000000;">$(</span><span style="color: #0000ff;">Get-Service</span> <span style="color: #000080;">-Computer</span> <span style="color: #8a2be2;">COMPUTER1</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">spooler</span><span style="color: #000000;">)</span></pre>
<p>Restart a service on remote computer:</p>
<pre class="PowerShellColorizedScript"><span style="color: #0000ff;">Restart-Service</span> <span style="color: #000080;">-InputObject</span> <span style="color: #000000;">$(</span><span style="color: #0000ff;">Get-Service</span> <span style="color: #000080;">-Computer</span> <span style="color: #8a2be2;">COMPUTER1</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">spooler</span><span style="color: #000000;">)</span></pre>
<p>Hope these little ones helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-quick-and-easy-to-start-stop-a-remote-service/1201/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PowerShell: Convert your VB scripts to PowerShell</title>
		<link>http://techibee.com/powershell/powershell-convert-your-vb-scripts-to-powershell/1164?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=powershell-convert-your-vb-scripts-to-powershell</link>
		<comments>http://techibee.com/powershell/powershell-convert-your-vb-scripts-to-powershell/1164#comments</comments>
		<pubDate>Fri, 11 Nov 2011 18:51:41 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[convert my vb scripts to powershell]]></category>
		<category><![CDATA[How to convert a VB script to powershell]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[Powershell code for VB scripts]]></category>
		<category><![CDATA[VB script to powershell converter]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1164</guid>
		<description><![CDATA[The popularity of PowerShell is increasing day-to-day and now every System administrator want to say bye to their VB scripts and enter the powerful powershell world. A system administrator who is familiar with VB script(or has in home grown scripts in VB) want to try powershell, the first question he gets into mind is, &#8220;how [...]]]></description>
			<content:encoded><![CDATA[<p>The popularity of PowerShell is increasing day-to-day and now every System administrator want to say bye to their VB scripts and enter the powerful powershell world. A system administrator who is familiar with VB script(or has in home grown scripts in VB) want to try powershell, the first question he gets into mind is, &#8220;how to do xyz task in powershell&#8221;. Of course, we can ask our big brother google.com but it will take little long to find the powershell way of coding a task.</p>
<p>For those kind of admins, MS has published a long list of converting xyz from VB script to PowerShell. This pretty much enough for a person who wants to convert their VB scripts into powershell code. For your easy reference I am posting the content from <a href="http://technet.microsoft.com/hi-in/library/ee692947%28en-us%29.aspx">MS technet</a> site to here.</p>
<p>Hope this helps&#8230;</p>
<div>
<dl>
<dt><a id="ctl00_MTCS_main_ctl00" href="http://technet.microsoft.com/hi-in/library/ff730920%28en-us%29.aspx">Cmdlets and Add-ons</a></dt>
<dt><a id="ctl00_MTCS_main_ctl01" href="http://technet.microsoft.com/hi-in/library/ff657832%28en-us%29.aspx">Converting Dictionary Object to Windows PowerShell Commands</a></dt>
<dt><a id="ctl00_MTCS_main_ctl02" href="http://technet.microsoft.com/hi-in/library/ee221101%28en-us%29.aspx">Converting VBScript Commands to Windows PowerShell Commands</a></dt>
<dt><a id="ctl00_MTCS_main_ctl03" href="http://technet.microsoft.com/hi-in/library/ee156790%28en-us%29.aspx">Converting VBScript&#8217;s Abs Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl04" href="http://technet.microsoft.com/hi-in/library/ee156793%28en-us%29.aspx">Converting VBScript&#8217;s Addition Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl05" href="http://technet.microsoft.com/hi-in/library/ee156794%28en-us%29.aspx">Converting VBScript&#8217;s And Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl06" href="http://technet.microsoft.com/hi-in/library/ee156795%28en-us%29.aspx">Converting VBScript&#8217;s Array Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl07" href="http://technet.microsoft.com/hi-in/library/ee156796%28en-us%29.aspx">Converting VBScript&#8217;s Asc Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl08" href="http://technet.microsoft.com/hi-in/library/ee156797%28en-us%29.aspx">Converting VBScript&#8217;s Assignment Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl09" href="http://technet.microsoft.com/hi-in/library/ee156798%28en-us%29.aspx">Converting VBScript&#8217;s Atn Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl10" href="http://technet.microsoft.com/hi-in/library/ee156800%28en-us%29.aspx">Converting VBScript&#8217;s CBool Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl11" href="http://technet.microsoft.com/hi-in/library/ee156801%28en-us%29.aspx">Converting VBScript&#8217;s CByte Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl12" href="http://technet.microsoft.com/hi-in/library/ee156802%28en-us%29.aspx">Converting VBScript&#8217;s CCur Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl13" href="http://technet.microsoft.com/hi-in/library/ee156803%28en-us%29.aspx">Converting VBScript&#8217;s CDate Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl14" href="http://technet.microsoft.com/hi-in/library/ee156804%28en-us%29.aspx">Converting VBScript&#8217;s CDbl Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl15" href="http://technet.microsoft.com/hi-in/library/ee156806%28en-us%29.aspx">Converting VBScript&#8217;s CInt Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl16" href="http://technet.microsoft.com/hi-in/library/ee156810%28en-us%29.aspx">Converting VBScript&#8217;s CLng Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl17" href="http://technet.microsoft.com/hi-in/library/ee176801%28en-us%29.aspx">Converting VBScript&#8217;s CSng Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl18" href="http://technet.microsoft.com/hi-in/library/ee176802%28en-us%29.aspx">Converting VBScript&#8217;s CStr Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl19" href="http://technet.microsoft.com/hi-in/library/ee156799%28en-us%29.aspx">Converting VBScript&#8217;s Call Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl20" href="http://technet.microsoft.com/hi-in/library/ee156805%28en-us%29.aspx">Converting VBScript&#8217;s Chr Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl21" href="http://technet.microsoft.com/hi-in/library/ee156807%28en-us%29.aspx">Converting VBScript&#8217;s Class Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl22" href="http://technet.microsoft.com/hi-in/library/ee156809%28en-us%29.aspx">Converting VBScript&#8217;s Clear Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl23" href="http://technet.microsoft.com/hi-in/library/ee156813%28en-us%29.aspx">Converting VBScript&#8217;s Concatenation Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl24" href="http://technet.microsoft.com/hi-in/library/ee156815%28en-us%29.aspx">Converting VBScript&#8217;s Const Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl25" href="http://technet.microsoft.com/hi-in/library/ee156819%28en-us%29.aspx">Converting VBScript&#8217;s Cos Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl26" href="http://technet.microsoft.com/hi-in/library/ee176800%28en-us%29.aspx">Converting VBScript&#8217;s CreateObject Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl27" href="http://technet.microsoft.com/hi-in/library/ee176803%28en-us%29.aspx">Converting VBScript&#8217;s Date Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl28" href="http://technet.microsoft.com/hi-in/library/ee176804%28en-us%29.aspx">Converting VBScript&#8217;s DateAdd Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl29" href="http://technet.microsoft.com/hi-in/library/ee176805%28en-us%29.aspx">Converting VBScript&#8217;s DateDiff Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl30" href="http://technet.microsoft.com/hi-in/library/ee176806%28en-us%29.aspx">Converting VBScript&#8217;s DatePart Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl31" href="http://technet.microsoft.com/hi-in/library/ee176807%28en-us%29.aspx">Converting VBScript&#8217;s DateSerial Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl32" href="http://technet.microsoft.com/hi-in/library/ee176808%28en-us%29.aspx">Converting VBScript&#8217;s DateValue Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl33" href="http://technet.microsoft.com/hi-in/library/ee176809%28en-us%29.aspx">Converting VBScript&#8217;s Day Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl34" href="http://technet.microsoft.com/hi-in/library/ee176811%28en-us%29.aspx">Converting VBScript&#8217;s Dim Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl35" href="http://technet.microsoft.com/hi-in/library/ee176812%28en-us%29.aspx">Converting VBScript&#8217;s Division Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl36" href="http://technet.microsoft.com/hi-in/library/ee176813%28en-us%29.aspx">Converting VBScript&#8217;s Do&#8230;Loop Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl37" href="http://technet.microsoft.com/hi-in/library/ee176814%28en-us%29.aspx">Converting VBScript&#8217;s Eqv Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl38" href="http://technet.microsoft.com/hi-in/library/ee176815%28en-us%29.aspx">Converting VBScript&#8217;s Erase Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl39" href="http://technet.microsoft.com/hi-in/library/ee176810%28en-us%29.aspx">Converting VBScript&#8217;s Err Object Description Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl40" href="http://technet.microsoft.com/hi-in/library/ee176865%28en-us%29.aspx">Converting VBScript&#8217;s Err Object HelpContext Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl41" href="http://technet.microsoft.com/hi-in/library/ee176866%28en-us%29.aspx">Converting VBScript&#8217;s Err Object HelpFile Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl42" href="http://technet.microsoft.com/hi-in/library/ee176919%28en-us%29.aspx">Converting VBScript&#8217;s Err Object Number Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl43" href="http://technet.microsoft.com/hi-in/library/ee176969%28en-us%29.aspx">Converting VBScript&#8217;s Err Object Source Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl44" href="http://technet.microsoft.com/hi-in/library/ee176816%28en-us%29.aspx">Converting VBScript&#8217;s Escape Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl45" href="http://technet.microsoft.com/hi-in/library/ee176817%28en-us%29.aspx">Converting VBScript&#8217;s Eval Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl46" href="http://technet.microsoft.com/hi-in/library/ee176818%28en-us%29.aspx">Converting VBScript&#8217;s Execute Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl47" href="http://technet.microsoft.com/hi-in/library/ee176819%28en-us%29.aspx">Converting VBScript&#8217;s ExecuteGlobal Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl48" href="http://technet.microsoft.com/hi-in/library/ee176820%28en-us%29.aspx">Converting VBScript&#8217;s Exit Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl49" href="http://technet.microsoft.com/hi-in/library/ee176821%28en-us%29.aspx">Converting VBScript&#8217;s Exp Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl50" href="http://technet.microsoft.com/hi-in/library/ee176822%28en-us%29.aspx">Converting VBScript&#8217;s Exponentiation Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl51" href="http://technet.microsoft.com/hi-in/library/ee176826%28en-us%29.aspx">Converting VBScript&#8217;s Filter Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl52" href="http://technet.microsoft.com/hi-in/library/ee176827%28en-us%29.aspx">Converting VBScript&#8217;s Fix Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl53" href="http://technet.microsoft.com/hi-in/library/ee176829%28en-us%29.aspx">Converting VBScript&#8217;s For Each&#8230;Next Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl54" href="http://technet.microsoft.com/hi-in/library/ee176836%28en-us%29.aspx">Converting VBScript&#8217;s For&#8230;Next Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl55" href="http://technet.microsoft.com/hi-in/library/ee176832%28en-us%29.aspx">Converting VBScript&#8217;s FormatCurrency Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl56" href="http://technet.microsoft.com/hi-in/library/ee176833%28en-us%29.aspx">Converting VBScript&#8217;s FormatDateTime Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl57" href="http://technet.microsoft.com/hi-in/library/ee176834%28en-us%29.aspx">Converting VBScript&#8217;s FormatNumber Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl58" href="http://technet.microsoft.com/hi-in/library/ee176835%28en-us%29.aspx">Converting VBScript&#8217;s FormatPercent Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl59" href="http://technet.microsoft.com/hi-in/library/ee176837%28en-us%29.aspx">Converting VBScript&#8217;s Function Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl60" href="http://technet.microsoft.com/hi-in/library/ee176861%28en-us%29.aspx">Converting VBScript&#8217;s GetLocale Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl61" href="http://technet.microsoft.com/hi-in/library/ee176862%28en-us%29.aspx">Converting VBScript&#8217;s GetObject Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl62" href="http://technet.microsoft.com/hi-in/library/ee176863%28en-us%29.aspx">Converting VBScript&#8217;s GetRef Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl63" href="http://technet.microsoft.com/hi-in/library/ee176867%28en-us%29.aspx">Converting VBScript&#8217;s Hex Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl64" href="http://technet.microsoft.com/hi-in/library/ee176869%28en-us%29.aspx">Converting VBScript&#8217;s Hour Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl65" href="http://technet.microsoft.com/hi-in/library/ee176870%28en-us%29.aspx">Converting VBScript&#8217;s If&#8230;Then&#8230;Else Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl66" href="http://technet.microsoft.com/hi-in/library/ee176871%28en-us%29.aspx">Converting VBScript&#8217;s Imp Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl67" href="http://technet.microsoft.com/hi-in/library/ee176876%28en-us%29.aspx">Converting VBScript&#8217;s InStr Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl68" href="http://technet.microsoft.com/hi-in/library/ee176877%28en-us%29.aspx">Converting VBScript&#8217;s InStrRev Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl69" href="http://technet.microsoft.com/hi-in/library/ee176875%28en-us%29.aspx">Converting VBScript&#8217;s InputBox Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl70" href="http://technet.microsoft.com/hi-in/library/ee176878%28en-us%29.aspx">Converting VBScript&#8217;s Int Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl71" href="http://technet.microsoft.com/hi-in/library/ee176879%28en-us%29.aspx">Converting VBScript&#8217;s Integer Division Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl72" href="http://technet.microsoft.com/hi-in/library/ee176883%28en-us%29.aspx">Converting VBScript&#8217;s Is Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl73" href="http://technet.microsoft.com/hi-in/library/ee176884%28en-us%29.aspx">Converting VBScript&#8217;s IsArray Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl74" href="http://technet.microsoft.com/hi-in/library/ee176885%28en-us%29.aspx">Converting VBScript&#8217;s IsDate Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl75" href="http://technet.microsoft.com/hi-in/library/ee176886%28en-us%29.aspx">Converting VBScript&#8217;s IsEmpty Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl76" href="http://technet.microsoft.com/hi-in/library/ee176887%28en-us%29.aspx">Converting VBScript&#8217;s IsNull Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl77" href="http://technet.microsoft.com/hi-in/library/ee176889%28en-us%29.aspx">Converting VBScript&#8217;s IsNumeric Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl78" href="http://technet.microsoft.com/hi-in/library/ee176890%28en-us%29.aspx">Converting VBScript&#8217;s IsObject Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl79" href="http://technet.microsoft.com/hi-in/library/ee176891%28en-us%29.aspx">Converting VBScript&#8217;s Join Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl80" href="http://technet.microsoft.com/hi-in/library/ee176892%28en-us%29.aspx">Converting VBScript&#8217;s LBound Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl81" href="http://technet.microsoft.com/hi-in/library/ee176893%28en-us%29.aspx">Converting VBScript&#8217;s LCase Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl82" href="http://technet.microsoft.com/hi-in/library/ee176898%28en-us%29.aspx">Converting VBScript&#8217;s LTrim Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl83" href="http://technet.microsoft.com/hi-in/library/ee176894%28en-us%29.aspx">Converting VBScript&#8217;s Left Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl84" href="http://technet.microsoft.com/hi-in/library/ee176895%28en-us%29.aspx">Converting VBScript&#8217;s Len Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl85" href="http://technet.microsoft.com/hi-in/library/ee176896%28en-us%29.aspx">Converting VBScript&#8217;s LoadPicture Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl86" href="http://technet.microsoft.com/hi-in/library/ee176897%28en-us%29.aspx">Converting VBScript&#8217;s Log Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl87" href="http://technet.microsoft.com/hi-in/library/ee176901%28en-us%29.aspx">Converting VBScript&#8217;s Mid Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl88" href="http://technet.microsoft.com/hi-in/library/ee176902%28en-us%29.aspx">Converting VBScript&#8217;s Minute Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl89" href="http://technet.microsoft.com/hi-in/library/ee176903%28en-us%29.aspx">Converting VBScript&#8217;s Mod Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl90" href="http://technet.microsoft.com/hi-in/library/ee176908%28en-us%29.aspx">Converting VBScript&#8217;s Month Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl91" href="http://technet.microsoft.com/hi-in/library/ee176909%28en-us%29.aspx">Converting VBScript&#8217;s MonthName Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl92" href="http://technet.microsoft.com/hi-in/library/ee176911%28en-us%29.aspx">Converting VBScript&#8217;s MsgBox Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl93" href="http://technet.microsoft.com/hi-in/library/ee176912%28en-us%29.aspx">Converting VBScript&#8217;s Multiplication Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl94" href="http://technet.microsoft.com/hi-in/library/ee176917%28en-us%29.aspx">Converting VBScript&#8217;s Not Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl95" href="http://technet.microsoft.com/hi-in/library/ee176918%28en-us%29.aspx">Converting VBScript&#8217;s Now Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl96" href="http://technet.microsoft.com/hi-in/library/ee176920%28en-us%29.aspx">Converting VBScript&#8217;s Oct Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl97" href="http://technet.microsoft.com/hi-in/library/ee176921%28en-us%29.aspx">Converting VBScript&#8217;s On Error Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl98" href="http://technet.microsoft.com/hi-in/library/ee176922%28en-us%29.aspx">Converting VBScript&#8217;s Option Explicit Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl99" href="http://technet.microsoft.com/hi-in/library/ee176923%28en-us%29.aspx">Converting VBScript&#8217;s Or Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl100" href="http://technet.microsoft.com/hi-in/library/ee176929%28en-us%29.aspx">Converting VBScript&#8217;s Property Get Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl101" href="http://technet.microsoft.com/hi-in/library/ee176930%28en-us%29.aspx">Converting VBScript&#8217;s Property Let Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl102" href="http://technet.microsoft.com/hi-in/library/ee176931%28en-us%29.aspx">Converting VBScript&#8217;s Property Set Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl103" href="http://technet.microsoft.com/hi-in/library/ee176932%28en-us%29.aspx">Converting VBScript&#8217;s Public Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl104" href="http://technet.microsoft.com/hi-in/library/ee176944%28en-us%29.aspx">Converting VBScript&#8217;s RGB Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl105" href="http://technet.microsoft.com/hi-in/library/ee176948%28en-us%29.aspx">Converting VBScript&#8217;s RTrim Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl106" href="http://technet.microsoft.com/hi-in/library/ee176933%28en-us%29.aspx">Converting VBScript&#8217;s Raise Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl107" href="http://technet.microsoft.com/hi-in/library/ee176934%28en-us%29.aspx">Converting VBScript&#8217;s Randomize Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl108" href="http://technet.microsoft.com/hi-in/library/ee176936%28en-us%29.aspx">Converting VBScript&#8217;s ReDim Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl109" href="http://technet.microsoft.com/hi-in/library/ee176937%28en-us%29.aspx">Converting VBScript&#8217;s Rem Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl110" href="http://technet.microsoft.com/hi-in/library/ee176941%28en-us%29.aspx">Converting VBScript&#8217;s Replace Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl111" href="http://technet.microsoft.com/hi-in/library/ee176945%28en-us%29.aspx">Converting VBScript&#8217;s Right Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl112" href="http://technet.microsoft.com/hi-in/library/ee176946%28en-us%29.aspx">Converting VBScript&#8217;s Rnd Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl113" href="http://technet.microsoft.com/hi-in/library/ee176947%28en-us%29.aspx">Converting VBScript&#8217;s Round Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl114" href="http://technet.microsoft.com/hi-in/library/ee176950%28en-us%29.aspx">Converting VBScript&#8217;s ScriptEngine Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl115" href="http://technet.microsoft.com/hi-in/library/ee176951%28en-us%29.aspx">Converting VBScript&#8217;s ScriptEngineBuildVersion Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl116" href="http://technet.microsoft.com/hi-in/library/ee176952%28en-us%29.aspx">Converting VBScript&#8217;s ScriptEngineMajorVersion Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl117" href="http://technet.microsoft.com/hi-in/library/ee176953%28en-us%29.aspx">Converting VBScript&#8217;s ScriptEngineMinorVersion Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl118" href="http://technet.microsoft.com/hi-in/library/ee176954%28en-us%29.aspx">Converting VBScript&#8217;s Second Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl119" href="http://technet.microsoft.com/hi-in/library/ee176957%28en-us%29.aspx">Converting VBScript&#8217;s Select Case Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl120" href="http://technet.microsoft.com/hi-in/library/ee176964%28en-us%29.aspx">Converting VBScript&#8217;s Set Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl121" href="http://technet.microsoft.com/hi-in/library/ee176965%28en-us%29.aspx">Converting VBScript&#8217;s SetLocale Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl122" href="http://technet.microsoft.com/hi-in/library/ee176966%28en-us%29.aspx">Converting VBScript&#8217;s Sgn Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl123" href="http://technet.microsoft.com/hi-in/library/ee176967%28en-us%29.aspx">Converting VBScript&#8217;s Sin Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl124" href="http://technet.microsoft.com/hi-in/library/ee176970%28en-us%29.aspx">Converting VBScript&#8217;s Space Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl125" href="http://technet.microsoft.com/hi-in/library/ee176971%28en-us%29.aspx">Converting VBScript&#8217;s Split Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl126" href="http://technet.microsoft.com/hi-in/library/ee176973%28en-us%29.aspx">Converting VBScript&#8217;s Sqr Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl127" href="http://technet.microsoft.com/hi-in/library/ee177006%28en-us%29.aspx">Converting VBScript&#8217;s Stop Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl128" href="http://technet.microsoft.com/hi-in/library/ee177007%28en-us%29.aspx">Converting VBScript&#8217;s StrComp Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl129" href="http://technet.microsoft.com/hi-in/library/ee177009%28en-us%29.aspx">Converting VBScript&#8217;s StrReverse Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl130" href="http://technet.microsoft.com/hi-in/library/ee177008%28en-us%29.aspx">Converting VBScript&#8217;s String Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl131" href="http://technet.microsoft.com/hi-in/library/ee177010%28en-us%29.aspx">Converting VBScript&#8217;s Sub Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl132" href="http://technet.microsoft.com/hi-in/library/ee177011%28en-us%29.aspx">Converting VBScript&#8217;s Subtraction Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl133" href="http://technet.microsoft.com/hi-in/library/ee177013%28en-us%29.aspx">Converting VBScript&#8217;s Tan Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl134" href="http://technet.microsoft.com/hi-in/library/ee176928%28en-us%29.aspx">Converting VBScript&#8217;s Tan Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl135" href="http://technet.microsoft.com/hi-in/library/ee177016%28en-us%29.aspx">Converting VBScript&#8217;s Time Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl136" href="http://technet.microsoft.com/hi-in/library/ee177018%28en-us%29.aspx">Converting VBScript&#8217;s TimeSerial Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl137" href="http://technet.microsoft.com/hi-in/library/ee177019%28en-us%29.aspx">Converting VBScript&#8217;s TimeValue Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl138" href="http://technet.microsoft.com/hi-in/library/ee177017%28en-us%29.aspx">Converting VBScript&#8217;s Timer Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl139" href="http://technet.microsoft.com/hi-in/library/ee177020%28en-us%29.aspx">Converting VBScript&#8217;s Trim Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl140" href="http://technet.microsoft.com/hi-in/library/ee177021%28en-us%29.aspx">Converting VBScript&#8217;s TypeName Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl141" href="http://technet.microsoft.com/hi-in/library/ee177022%28en-us%29.aspx">Converting VBScript&#8217;s UBound Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl142" href="http://technet.microsoft.com/hi-in/library/ee177023%28en-us%29.aspx">Converting VBScript&#8217;s UCase Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl143" href="http://technet.microsoft.com/hi-in/library/ee177024%28en-us%29.aspx">Converting VBScript&#8217;s Unescape Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl144" href="http://technet.microsoft.com/hi-in/library/ee177025%28en-us%29.aspx">Converting VBScript&#8217;s Vartype Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl145" href="http://technet.microsoft.com/hi-in/library/ee177026%28en-us%29.aspx">Converting VBScript&#8217;s Weekday Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl146" href="http://technet.microsoft.com/hi-in/library/ee177027%28en-us%29.aspx">Converting VBScript&#8217;s WeekdayName Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl147" href="http://technet.microsoft.com/hi-in/library/ee177029%28en-us%29.aspx">Converting VBScript&#8217;s While&#8230;Wend Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl148" href="http://technet.microsoft.com/hi-in/library/ee177030%28en-us%29.aspx">Converting VBScript&#8217;s With Statement</a></dt>
<dt><a id="ctl00_MTCS_main_ctl149" href="http://technet.microsoft.com/hi-in/library/ee177033%28en-us%29.aspx">Converting VBScript&#8217;s Xor Operator</a></dt>
<dt><a id="ctl00_MTCS_main_ctl150" href="http://technet.microsoft.com/hi-in/library/ee177034%28en-us%29.aspx">Converting VBScript&#8217;s Year Function</a></dt>
<dt><a id="ctl00_MTCS_main_ctl151" href="http://technet.microsoft.com/hi-in/library/ff657834%28en-us%29.aspx">Converting Windows Script Host Methods to Windows PowerShell Commands</a></dt>
<dt><a id="ctl00_MTCS_main_ctl152" href="http://technet.microsoft.com/hi-in/library/ff730924%28en-us%29.aspx">Converting the Dictionary Object&#8217;s Add Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl153" href="http://technet.microsoft.com/hi-in/library/ee692686%28en-us%29.aspx">Converting the Dictionary Object&#8217;s CompareMode Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl154" href="http://technet.microsoft.com/hi-in/library/ee692687%28en-us%29.aspx">Converting the Dictionary Object&#8217;s Exists Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl155" href="http://technet.microsoft.com/hi-in/library/ee692688%28en-us%29.aspx">Converting the Dictionary Object&#8217;s Item Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl156" href="http://technet.microsoft.com/hi-in/library/ee692689%28en-us%29.aspx">Converting the Dictionary Object&#8217;s Items Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl157" href="http://technet.microsoft.com/hi-in/library/ee692690%28en-us%29.aspx">Converting the Dictionary Object&#8217;s Key Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl158" href="http://technet.microsoft.com/hi-in/library/ee692691%28en-us%29.aspx">Converting the Dictionary Object&#8217;s Keys Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl159" href="http://technet.microsoft.com/hi-in/library/ee692692%28en-us%29.aspx">Converting the Dictionary Object&#8217;s Remove Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl160" href="http://technet.microsoft.com/hi-in/library/ee692693%28en-us%29.aspx">Converting the Dictionary Object&#8217;s RemoveAll Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl161" href="http://technet.microsoft.com/hi-in/library/ee692757%28en-us%29.aspx">Converting the FileSystemObject to Windows PowerShell Commands</a></dt>
<dt><a id="ctl00_MTCS_main_ctl162" href="http://technet.microsoft.com/hi-in/library/ee692694%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Add Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl163" href="http://technet.microsoft.com/hi-in/library/ee692695%28en-us%29.aspx">Converting the FileSystemObject&#8217;s AtEndOfLine Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl164" href="http://technet.microsoft.com/hi-in/library/ee692696%28en-us%29.aspx">Converting the FileSystemObject&#8217;s AtEndOfStream Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl165" href="http://technet.microsoft.com/hi-in/library/ff730928%28en-us%29.aspx">Converting the FileSystemObject&#8217;s AvailableSpace Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl166" href="http://technet.microsoft.com/hi-in/library/ee692697%28en-us%29.aspx">Converting the FileSystemObject&#8217;s BuildPath Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl167" href="http://technet.microsoft.com/hi-in/library/ee692698%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Close Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl168" href="http://technet.microsoft.com/hi-in/library/ee692699%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Column Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl169" href="http://technet.microsoft.com/hi-in/library/ee692700%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Copy Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl170" href="http://technet.microsoft.com/hi-in/library/ee692701%28en-us%29.aspx">Converting the FileSystemObject&#8217;s CopyFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl171" href="http://technet.microsoft.com/hi-in/library/ee692702%28en-us%29.aspx">Converting the FileSystemObject&#8217;s CopyFolder Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl172" href="http://technet.microsoft.com/hi-in/library/ee692703%28en-us%29.aspx">Converting the FileSystemObject&#8217;s CreateFolder Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl173" href="http://technet.microsoft.com/hi-in/library/ee692704%28en-us%29.aspx">Converting the FileSystemObject&#8217;s CreateTextFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl174" href="http://technet.microsoft.com/hi-in/library/ee692705%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DateCreated Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl175" href="http://technet.microsoft.com/hi-in/library/ee692706%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DateLastAccessed Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl176" href="http://technet.microsoft.com/hi-in/library/ee692707%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DateLastModified Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl177" href="http://technet.microsoft.com/hi-in/library/ee692708%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Delete Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl178" href="http://technet.microsoft.com/hi-in/library/ee692709%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DeleteFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl179" href="http://technet.microsoft.com/hi-in/library/ee692710%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DeleteFolder Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl180" href="http://technet.microsoft.com/hi-in/library/ee692711%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Drive Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl181" href="http://technet.microsoft.com/hi-in/library/ee692712%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DriveExists Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl182" href="http://technet.microsoft.com/hi-in/library/ee692713%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DriveLetter Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl183" href="http://technet.microsoft.com/hi-in/library/ee692715%28en-us%29.aspx">Converting the FileSystemObject&#8217;s DriveType Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl184" href="http://technet.microsoft.com/hi-in/library/ee692714%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Drives Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl185" href="http://technet.microsoft.com/hi-in/library/ee692716%28en-us%29.aspx">Converting the FileSystemObject&#8217;s FileExists Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl186" href="http://technet.microsoft.com/hi-in/library/ee692718%28en-us%29.aspx">Converting the FileSystemObject&#8217;s FileSystem Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl187" href="http://technet.microsoft.com/hi-in/library/ee692717%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Files Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl188" href="http://technet.microsoft.com/hi-in/library/ee692719%28en-us%29.aspx">Converting the FileSystemObject&#8217;s FolderExists Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl189" href="http://technet.microsoft.com/hi-in/library/ee692720%28en-us%29.aspx">Converting the FileSystemObject&#8217;s FreeSpace Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl190" href="http://technet.microsoft.com/hi-in/library/ee692721%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetAbsolutePathName Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl191" href="http://technet.microsoft.com/hi-in/library/ee692722%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetBaseName Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl192" href="http://technet.microsoft.com/hi-in/library/ee692723%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetDrive Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl193" href="http://technet.microsoft.com/hi-in/library/ee692724%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetDriveName Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl194" href="http://technet.microsoft.com/hi-in/library/ee692725%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetExtensionName Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl195" href="http://technet.microsoft.com/hi-in/library/ee692726%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl196" href="http://technet.microsoft.com/hi-in/library/ee692727%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetFileName Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl197" href="http://technet.microsoft.com/hi-in/library/ee692728%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetFileVersion Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl198" href="http://technet.microsoft.com/hi-in/library/ee692729%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetFolder Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl199" href="http://technet.microsoft.com/hi-in/library/ee692730%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetParentFolderName Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl200" href="http://technet.microsoft.com/hi-in/library/ee692731%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetSpecialFolder Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl201" href="http://technet.microsoft.com/hi-in/library/ee692732%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetStandardStream Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl202" href="http://technet.microsoft.com/hi-in/library/ee692733%28en-us%29.aspx">Converting the FileSystemObject&#8217;s GetTempName Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl203" href="http://technet.microsoft.com/hi-in/library/ee692734%28en-us%29.aspx">Converting the FileSystemObject&#8217;s IsReady Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl204" href="http://technet.microsoft.com/hi-in/library/ee692735%28en-us%29.aspx">Converting the FileSystemObject&#8217;s IsRootFolder Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl205" href="http://technet.microsoft.com/hi-in/library/ee692736%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Line Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl206" href="http://technet.microsoft.com/hi-in/library/ee692737%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Move Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl207" href="http://technet.microsoft.com/hi-in/library/ee692738%28en-us%29.aspx">Converting the FileSystemObject&#8217;s MoveFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl208" href="http://technet.microsoft.com/hi-in/library/ee692739%28en-us%29.aspx">Converting the FileSystemObject&#8217;s MoveFolder Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl209" href="http://technet.microsoft.com/hi-in/library/ee692740%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Name Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl210" href="http://technet.microsoft.com/hi-in/library/ee692741%28en-us%29.aspx">Converting the FileSystemObject&#8217;s OpenAsTextStream Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl211" href="http://technet.microsoft.com/hi-in/library/ee692742%28en-us%29.aspx">Converting the FileSystemObject&#8217;s OpenTextFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl212" href="http://technet.microsoft.com/hi-in/library/ee692743%28en-us%29.aspx">Converting the FileSystemObject&#8217;s ParentFolder Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl213" href="http://technet.microsoft.com/hi-in/library/ee692744%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Path Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl214" href="http://technet.microsoft.com/hi-in/library/ee692745%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Read Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl215" href="http://technet.microsoft.com/hi-in/library/ee692746%28en-us%29.aspx">Converting the FileSystemObject&#8217;s ReadAll Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl216" href="http://technet.microsoft.com/hi-in/library/ee692747%28en-us%29.aspx">Converting the FileSystemObject&#8217;s ReadLine Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl217" href="http://technet.microsoft.com/hi-in/library/ee692748%28en-us%29.aspx">Converting the FileSystemObject&#8217;s RootFolder Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl218" href="http://technet.microsoft.com/hi-in/library/ee692749%28en-us%29.aspx">Converting the FileSystemObject&#8217;s SerialNumber Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl219" href="http://technet.microsoft.com/hi-in/library/ee692750%28en-us%29.aspx">Converting the FileSystemObject&#8217;s ShareName Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl220" href="http://technet.microsoft.com/hi-in/library/ee692751%28en-us%29.aspx">Converting the FileSystemObject&#8217;s ShortName Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl221" href="http://technet.microsoft.com/hi-in/library/ee692752%28en-us%29.aspx">Converting the FileSystemObject&#8217;s ShortPath Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl222" href="http://technet.microsoft.com/hi-in/library/ee692753%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Size Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl223" href="http://technet.microsoft.com/hi-in/library/ee692754%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Skip Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl224" href="http://technet.microsoft.com/hi-in/library/ee692755%28en-us%29.aspx">Converting the FileSystemObject&#8217;s SkipLine Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl225" href="http://technet.microsoft.com/hi-in/library/ee692756%28en-us%29.aspx">Converting the FileSystemObject&#8217;s SubFolders Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl226" href="http://technet.microsoft.com/hi-in/library/ee692758%28en-us%29.aspx">Converting the FileSystemObject&#8217;s TotalSize Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl227" href="http://technet.microsoft.com/hi-in/library/ee692759%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Type Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl228" href="http://technet.microsoft.com/hi-in/library/ee692760%28en-us%29.aspx">Converting the FileSystemObject&#8217;s VolumeName Property</a></dt>
<dt><a id="ctl00_MTCS_main_ctl229" href="http://technet.microsoft.com/hi-in/library/ee692761%28en-us%29.aspx">Converting the FileSystemObject&#8217;s Write Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl230" href="http://technet.microsoft.com/hi-in/library/ee692762%28en-us%29.aspx">Converting the FileSystemObject&#8217;s WriteBlankLines Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl231" href="http://technet.microsoft.com/hi-in/library/ee692763%28en-us%29.aspx">Converting the FileSystemObject&#8217;s WriteLine Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl232" href="http://technet.microsoft.com/hi-in/library/ff730975%28en-us%29.aspx">Converting the Windows Script Host AddWindowsPrinterConnection Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl233" href="http://technet.microsoft.com/hi-in/library/ff730976%28en-us%29.aspx">Converting the Windows Script Host AppActivate Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl234" href="http://technet.microsoft.com/hi-in/library/ff730977%28en-us%29.aspx">Converting the Windows Script Host Close Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl235" href="http://technet.microsoft.com/hi-in/library/ff730978%28en-us%29.aspx">Converting the Windows Script Host ConnectObject Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl236" href="http://technet.microsoft.com/hi-in/library/ff730979%28en-us%29.aspx">Converting the Windows Script Host Count Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl237" href="http://technet.microsoft.com/hi-in/library/ff730980%28en-us%29.aspx">Converting the Windows Script Host CreateObject Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl238" href="http://technet.microsoft.com/hi-in/library/ff730981%28en-us%29.aspx">Converting the Windows Script Host DisconnectObject Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl239" href="http://technet.microsoft.com/hi-in/library/ff730982%28en-us%29.aspx">Converting the Windows Script Host Echo Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl240" href="http://technet.microsoft.com/hi-in/library/ff730983%28en-us%29.aspx">Converting the Windows Script Host EnumNetworkDrives Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl241" href="http://technet.microsoft.com/hi-in/library/ff730984%28en-us%29.aspx">Converting the Windows Script Host EnumPrinterConnections Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl242" href="http://technet.microsoft.com/hi-in/library/ff730985%28en-us%29.aspx">Converting the Windows Script Host Exec Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl243" href="http://technet.microsoft.com/hi-in/library/ff730986%28en-us%29.aspx">Converting the Windows Script Host Execute Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl244" href="http://technet.microsoft.com/hi-in/library/ff730987%28en-us%29.aspx">Converting the Windows Script Host Exists Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl245" href="http://technet.microsoft.com/hi-in/library/ff730988%28en-us%29.aspx">Converting the Windows Script Host ExpandEnvironmentStrings Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl246" href="http://technet.microsoft.com/hi-in/library/ff730989%28en-us%29.aspx">Converting the Windows Script Host GetObject Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl247" href="http://technet.microsoft.com/hi-in/library/ff730990%28en-us%29.aspx">Converting the Windows Script Host GetResource Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl248" href="http://technet.microsoft.com/hi-in/library/ff730991%28en-us%29.aspx">Converting the Windows Script Host LogEvent Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl249" href="http://technet.microsoft.com/hi-in/library/ff730992%28en-us%29.aspx">Converting the Windows Script Host MapNetworkDrive Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl250" href="http://technet.microsoft.com/hi-in/library/ff730993%28en-us%29.aspx">Converting the Windows Script Host Popup Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl251" href="http://technet.microsoft.com/hi-in/library/ff730994%28en-us%29.aspx">Converting the Windows Script Host Quit Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl252" href="http://technet.microsoft.com/hi-in/library/ff730995%28en-us%29.aspx">Converting the Windows Script Host Read Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl253" href="http://technet.microsoft.com/hi-in/library/ff730996%28en-us%29.aspx">Converting the Windows Script Host ReadAll Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl254" href="http://technet.microsoft.com/hi-in/library/ff730997%28en-us%29.aspx">Converting the Windows Script Host ReadLine Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl255" href="http://technet.microsoft.com/hi-in/library/ff730998%28en-us%29.aspx">Converting the Windows Script Host RegDelete Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl256" href="http://technet.microsoft.com/hi-in/library/ff731001%28en-us%29.aspx">Converting the Windows Script Host RegRead Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl257" href="http://technet.microsoft.com/hi-in/library/ff731002%28en-us%29.aspx">Converting the Windows Script Host RegWrite Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl258" href="http://technet.microsoft.com/hi-in/library/ff731003%28en-us%29.aspx">Converting the Windows Script Host Remove Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl259" href="http://technet.microsoft.com/hi-in/library/ff731004%28en-us%29.aspx">Converting the Windows Script Host RemoveNetworkDrive Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl260" href="http://technet.microsoft.com/hi-in/library/ff731005%28en-us%29.aspx">Converting the Windows Script Host RemovePrinterConnection Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl261" href="http://technet.microsoft.com/hi-in/library/ff731006%28en-us%29.aspx">Converting the Windows Script Host Run Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl262" href="http://technet.microsoft.com/hi-in/library/ff731007%28en-us%29.aspx">Converting the Windows Script Host Save Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl263" href="http://technet.microsoft.com/hi-in/library/ff731008%28en-us%29.aspx">Converting the Windows Script Host SendKeys Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl264" href="http://technet.microsoft.com/hi-in/library/ff731009%28en-us%29.aspx">Converting the Windows Script Host SetDefaultPrinter Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl265" href="http://technet.microsoft.com/hi-in/library/ff731010%28en-us%29.aspx">Converting the Windows Script Host ShowUsage Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl266" href="http://technet.microsoft.com/hi-in/library/ff731011%28en-us%29.aspx">Converting the Windows Script Host SignFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl267" href="http://technet.microsoft.com/hi-in/library/ff731012%28en-us%29.aspx">Converting the Windows Script Host Skip Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl268" href="http://technet.microsoft.com/hi-in/library/ff731013%28en-us%29.aspx">Converting the Windows Script Host SkipLine Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl269" href="http://technet.microsoft.com/hi-in/library/ff731014%28en-us%29.aspx">Converting the Windows Script Host Sleep Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl270" href="http://technet.microsoft.com/hi-in/library/ff731015%28en-us%29.aspx">Converting the Windows Script Host Terminate Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl271" href="http://technet.microsoft.com/hi-in/library/ff731016%28en-us%29.aspx">Converting the Windows Script Host VerifyFile Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl272" href="http://technet.microsoft.com/hi-in/library/ff731017%28en-us%29.aspx">Converting the Windows Script Host Write Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl273" href="http://technet.microsoft.com/hi-in/library/ff731018%28en-us%29.aspx">Converting the Windows Script Host WriteBlankLines Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl274" href="http://technet.microsoft.com/hi-in/library/ff731019%28en-us%29.aspx">Converting the Windows Script Host WriteLine Method</a></dt>
<dt><a id="ctl00_MTCS_main_ctl275" href="http://technet.microsoft.com/hi-in/library/ff730971%28en-us%29.aspx">Introduction to Windows PowerShell Transactions</a></dt>
<dt><a id="ctl00_MTCS_main_ctl276" href="http://technet.microsoft.com/hi-in/library/ff730934%28en-us%29.aspx">Introduction to Windows PowerShell 2.0 CTP v2</a></dt>
<dt><a id="ctl00_MTCS_main_ctl277" href="http://technet.microsoft.com/hi-in/library/ff730966%28en-us%29.aspx">Join the Social</a></dt>
<dt><a id="ctl00_MTCS_main_ctl278" href="http://technet.microsoft.com/hi-in/library/ff730965%28en-us%29.aspx">Remoting Quoting</a></dt>
<dt><a id="ctl00_MTCS_main_ctl279" href="http://technet.microsoft.com/hi-in/library/cc976719%28en-us%29.aspx">Script Editors</a></dt>
<dt><a id="ctl00_MTCS_main_ctl280" href="http://technet.microsoft.com/hi-in/library/ff730967%28en-us%29.aspx">Searching Active Directory with Windows PowerShell</a></dt>
<dt><a id="ctl00_MTCS_main_ctl281" href="http://technet.microsoft.com/hi-in/library/ff730968%28en-us%29.aspx">Select-String Cmdlet Updates</a></dt>
<dt><a id="ctl00_MTCS_main_ctl282" href="http://technet.microsoft.com/hi-in/library/ff730969%28en-us%29.aspx">Specops Command</a></dt>
<dt><a id="ctl00_MTCS_main_ctl283" href="http://technet.microsoft.com/hi-in/library/ff730929%28en-us%29.aspx">The Get-Random Cmdlet</a></dt>
<dt><a id="ctl00_MTCS_main_ctl284" href="http://technet.microsoft.com/hi-in/library/ff730930%28en-us%29.aspx">The Out-GridView Cmdlet: Displaying Information in a Data Grid</a></dt>
<dt><a id="ctl00_MTCS_main_ctl285" href="http://technet.microsoft.com/hi-in/library/ff730931%28en-us%29.aspx">The Out-Gridview Cmdlet: Filter With Out-GridView</a></dt>
<dt><a id="ctl00_MTCS_main_ctl286" href="http://technet.microsoft.com/hi-in/library/ff730970%28en-us%29.aspx">The Set-StrictMode Cmdlet</a></dt>
<dt><a id="ctl00_MTCS_main_ctl287" href="http://technet.microsoft.com/hi-in/library/ff730925%28en-us%29.aspx">The Windows PowerShell Debugger</a></dt>
<dt><a id="ctl00_MTCS_main_ctl288" href="http://technet.microsoft.com/hi-in/library/ff730973%28en-us%29.aspx">WMI Enhancements in Windows PowerShell 2.0 CTP</a></dt>
<dt><a id="ctl00_MTCS_main_ctl289" href="http://technet.microsoft.com/hi-in/library/ff730927%28en-us%29.aspx">WMI Event Monitoring</a></dt>
<dt><a id="ctl00_MTCS_main_ctl290" href="http://technet.microsoft.com/hi-in/library/ff730974%28en-us%29.aspx">Workflow Studio</a></dt>
</dl>
</div>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-convert-your-vb-scripts-to-powershell/1164/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>only administrators have permission to add software during terminal services. if you want to install or configure software on server contact your admistrator</title>
		<link>http://techibee.com/general/only-administrators-have-permission-to-add-software-during-terminal-services-if-you-want-to-install-or-configure-software-on-server-contact-your-admistrator/1150?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=only-administrators-have-permission-to-add-software-during-terminal-services-if-you-want-to-install-or-configure-software-on-server-contact-your-admistrator</link>
		<comments>http://techibee.com/general/only-administrators-have-permission-to-add-software-during-terminal-services-if-you-want-to-install-or-configure-software-on-server-contact-your-admistrator/1150#comments</comments>
		<pubDate>Thu, 10 Nov 2011 13:09:30 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1150</guid>
		<description><![CDATA[You might see the error message outlined in subject while installing/uninstalling software on windows 2003 computer by connecting to terminal services. We all know that application installation has certain limitations when it comes to terminal services (anyone know why?). In such cases if you still want to install/uninstall the application on these terminal services enabled [...]]]></description>
			<content:encoded><![CDATA[<p>You might see the error message outlined in subject while installing/uninstalling software on windows 2003 computer by connecting to terminal services. We all know that application installation has certain limitations when it comes to terminal services (anyone know why?). In such cases if you still want to install/uninstall the application on these terminal services enabled servers, you need to choose one of the following methods.</p>
<p>If this the requirement is just one of the case, then option#1 best suits you.</p>
<p><strong>Option#1:</strong></p>
<p>start mstsc with /console or /admin option and then connect to the server. This allows you to connect to the console of the server directly eliminating terminal services piece from you way.</p>
<blockquote><p>Go to start -&gt; Run -&gt; type &#8220;mstsc /admin /v:servername&#8221; and click OK if you are using RDP client v6 or above</p>
<p>Go to start -&gt;Run -&gt; type &#8220;mstsc /console /v:servername&#8221; and click OK if you are using legacy version of RDP client.</p></blockquote>
<p><strong>Option#2:</strong></p>
<p>If your administrators are expected to install applications on servers by connecting via terminal services, then you need to make sure that application installation is allowed. You can do it via group policies.</p>
<blockquote><p>&#8220;computer configuration&#8221; -&gt; &#8220;administrative templates&#8221; -&gt; &#8220;windows components&#8221; -&gt; &#8220;windows installer&#8221; -&gt; &#8220;allow admin to install from terminal server session&#8221; should be <strong>enabled</strong></p></blockquote>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/general/only-administrators-have-permission-to-add-software-during-terminal-services-if-you-want-to-install-or-configure-software-on-server-contact-your-admistrator/1150/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

