<?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; Scripting</title>
	<atom:link href="http://techibee.com/category/scripting/feed" rel="self" type="application/rss+xml" />
	<link>http://techibee.com</link>
	<description>A System Administrator&#039;s Blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:40:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PowerShell: Is Windows Powers Hell?</title>
		<link>http://techibee.com/powershell/powershell-is-windows-powers-hell/1211</link>
		<comments>http://techibee.com/powershell/powershell-is-windows-powers-hell/1211#comments</comments>
		<pubDate>Thu, 24 Nov 2011 02:35:00 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1211</guid>
		<description><![CDATA[&#8220;Did you mean windows powers hell ?&#8221; is message you get when you search for &#8220;Windows PowerShell&#8221; in download.microsoft.com. Isn&#8217;t this funny? One of my friends noticed this. I feel MS should look at their search algorithm and make PowerShell as known word and don&#8217;t recommend &#8220;Powers hell&#8221;. If any MVPs or Microsoft Persons happens [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-12120"></div></div><p><span style="color: #ff0000;">&#8220;Did you mean windows powers hell ?&#8221;</span> is message you get when you search for &#8220;Windows PowerShell&#8221; in download.microsoft.com. Isn&#8217;t this funny? One of my friends noticed this. I feel MS should look at their search algorithm and make PowerShell as known word and don&#8217;t recommend &#8220;Powers hell&#8221;.</p>
<p>If any MVPs or Microsoft Persons happens to look at this post, please inform respective team in Microsoft to get this corrected. After all it is the first thing any one would do if they want to learn powershell.</p>
<p>Here is the screenshot of it.</p>
<p style="text-align: center;"><a href="http://techibee.com/wp-content/uploads/2011/11/windows-powers-hell.png"><img class="aligncenter size-full wp-image-1212" title="windows powers hell" src="http://techibee.com/wp-content/uploads/2011/11/windows-powers-hell.png" alt="" width="892" height="626" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-is-windows-powers-hell/1211/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: How to assign the output to a variable and print on console at same time</title>
		<link>http://techibee.com/powershell/powershell-how-to-assign-the-output-to-a-variable-and-print-on-console-at-same-time/1203</link>
		<comments>http://techibee.com/powershell/powershell-how-to-assign-the-output-to-a-variable-and-print-on-console-at-same-time/1203#comments</comments>
		<pubDate>Tue, 22 Nov 2011 14:14:14 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[powershell tip]]></category>
		<category><![CDATA[print output to console and assign to a variable at same time]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1203</guid>
		<description><![CDATA[We want to assign output of a cmdlet/function to a variable so that we can use it in further processing. In scripts it is very inconvenient to debug a issue if the output is going to a variable and not to console. In such cases we can do nothing other than printing the variable value [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-12040"></div></div><p>We want to assign output of a cmdlet/function to a variable so that we can use it in further processing. In scripts it is very inconvenient to debug a issue if the output is going to a variable and not to console. In such cases we can do nothing other than printing the variable value to the console by inserting extra lines of code.</p>
<p>To avoid such inconvenience, powershell has got a way to assign the output to a variable and print to console at the same time. This helped me in quick debugging of my scripts and oneliners.</p>
<p>Ok. Enough explaining about the usage and all and here is how it works.</p>
<pre class="PowerShellColorizedScript"><span style="color: #000000;">(</span><span style="color: #ff4500;">$service</span> <span style="color: #a9a9a9;">=</span> <span style="color: #0000ff;">Get-Service</span> <span style="color: #000080;">-Name</span> <span style="color: #8a2be2;">spooler</span><span style="color: #000000;">)</span></pre>
<p>Execute the command and you will understand what exactly it is doing. All we need to do it embed the whole command into into brackets like shown above.</p>
<p>Hope this little one helps you. Happy learning.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-how-to-assign-the-output-to-a-variable-and-print-on-console-at-same-time/1203/feed</wfw:commentRss>
		<slash:comments>0</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</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[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-11650"></div></div><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>PowerShell: Get network adapter connection status</title>
		<link>http://techibee.com/powershell/powershell-get-network-adapter-connection-status/1143</link>
		<comments>http://techibee.com/powershell/powershell-get-network-adapter-connection-status/1143#comments</comments>
		<pubDate>Wed, 09 Nov 2011 10:35:11 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[get disconnected network adapters]]></category>
		<category><![CDATA[get network adapter details]]></category>
		<category><![CDATA[get network status]]></category>
		<category><![CDATA[list network connections status]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1143</guid>
		<description><![CDATA[This powershell function helps you to get the network status of all network adapters in a given computer. Using this script it is easy to determine the status of all network connections in remote computer to see whether it is connected/disconnected/media disconnected/and different other statuses. This script queries Win32_NetworkAdapter WMI class for list of network [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-11440"></div></div><p>This powershell function helps you to get the network status of all network adapters in a given computer. Using this script it is easy to determine the status of all network connections in remote computer to see whether it is connected/disconnected/media disconnected/and different other statuses. This script queries Win32_NetworkAdapter WMI class for list of network adapters and then fetches the status of each adapter by querying &#8220;netconnectionstatus&#8221; parameter. This is a uint16 data type which returns any value ranging from 0-12. Each value from 0 to 12 has it&#8217;s own meaning. See the below table for details(source: <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa394216%28v=vs.85%29.aspx">MSDN</a>)</p>
<table>
<tbody>
<tr>
<th>Value</th>
<th>Meaning</th>
</tr>
<tr>
<td>
<dl>
<dt>0 (0&#215;0)</dt>
</dl>
</td>
<td>Disconnected</td>
</tr>
<tr>
<td>
<dl>
<dt>1 (0&#215;1)</dt>
</dl>
</td>
<td>Connecting</td>
</tr>
<tr>
<td>
<dl>
<dt>2 (0&#215;2)</dt>
</dl>
</td>
<td>Connected</td>
</tr>
<tr>
<td>
<dl>
<dt>3 (0&#215;3)</dt>
</dl>
</td>
<td>Disconnecting</td>
</tr>
<tr>
<td>
<dl>
<dt>4 (0&#215;4)</dt>
</dl>
</td>
<td>Hardware not present</td>
</tr>
<tr>
<td>
<dl>
<dt>5 (0&#215;5)</dt>
</dl>
</td>
<td>Hardware disabled</td>
</tr>
<tr>
<td>
<dl>
<dt>6 (0&#215;6)</dt>
</dl>
</td>
<td>Hardware malfunction</td>
</tr>
<tr>
<td>
<dl>
<dt>7 (0&#215;7)</dt>
</dl>
</td>
<td>Media disconnected</td>
</tr>
<tr>
<td>
<dl>
<dt>8 (0&#215;8)</dt>
</dl>
</td>
<td>Authenticating</td>
</tr>
<tr>
<td>
<dl>
<dt>9 (0&#215;9)</dt>
</dl>
</td>
<td>Authentication succeeded</td>
</tr>
<tr>
<td>
<dl>
<dt>10 (0xA)</dt>
</dl>
</td>
<td>Authentication failed</td>
</tr>
<tr>
<td>
<dl>
<dt>11 (0xB)</dt>
</dl>
</td>
<td>Invalid address</td>
</tr>
<tr>
<td>
<dl>
<dt>12 (0xC)</dt>
</dl>
</td>
<td>Credentials required</td>
</tr>
</tbody>
</table>
<p>So, here is the script which lists the network adapter name and its status.</p>
<p><strong>Script:</strong></p>
<pre class="PowerShellColorizedScript"><span style="color: #00008b;">function</span> <span style="color: #8a2be2;">Get-NetworkConnectionStatus</span> <span style="color: #000000;">{</span>
<span style="color: #00008b;">param</span><span style="color: #000000;">(</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: #ff4500;">$statushash</span> <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">@{</span>
<span style="color: #800080;">0</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Disconnected"</span>
<span style="color: #800080;">1</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Connecting"</span>
<span style="color: #800080;">2</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Connected"</span>
<span style="color: #800080;">3</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Disconnecting"</span>
<span style="color: #800080;">4</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Hardware not present"</span>
<span style="color: #800080;">5</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Hardware disabled"</span>
<span style="color: #800080;">6</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Hardware malfunction"</span>
<span style="color: #800080;">7</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Media Disconnected"</span>
<span style="color: #800080;">8</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Authenticating"</span>
<span style="color: #800080;">9</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Authentication Succeeded"</span>
<span style="color: #800080;">10</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Authentication Failed"</span>
<span style="color: #800080;">11</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Invalid Address"</span>
<span style="color: #800080;">12</span> <span style="color: #a9a9a9;">=</span> <span style="color: #8b0000;">"Credentials Required"</span>
<span style="color: #000000;">}</span>
<span style="color: #ff4500;">$networks</span> <span style="color: #a9a9a9;">=</span> <span style="color: #0000ff;">Gwmi</span> <span style="color: #000080;">-Class</span> <span style="color: #8a2be2;">Win32_NetworkAdapter</span> <span style="color: #000080;">-ComputerName</span> <span style="color: #ff4500;">$computername</span>
<span style="color: #ff4500;">$networkName</span> <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">@{</span><span style="color: #000000;">name</span><span style="color: #a9a9a9;">=</span><span style="color: #8b0000;">"NetworkName"</span><span style="color: #000000;">;</span><span style="color: #000000;">Expression</span><span style="color: #a9a9a9;">=</span><span style="color: #000000;">{</span><span style="color: #ff4500;">$_</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">Name</span><span style="color: #000000;">}</span><span style="color: #000000;">}</span>
<span style="color: #ff4500;">$networkStatus</span> <span style="color: #a9a9a9;">=</span> <span style="color: #000000;">@{</span><span style="color: #000000;">name</span><span style="color: #a9a9a9;">=</span><span style="color: #8b0000;">"Networkstatus"</span><span style="color: #000000;">;</span><span style="color: #000000;">Expression</span><span style="color: #a9a9a9;">=`
</span><span style="color: #000000;">{</span><span style="color: #ff4500;">$statushash</span><span style="color: #a9a9a9;">[</span><span style="color: #008080;">[int32]</span><span style="color: #000000;">$(</span><span style="color: #ff4500;">$_</span><span style="color: #a9a9a9;">.</span><span style="color: #000000;">NetConnectionStatus</span><span style="color: #000000;">)</span><span style="color: #a9a9a9;">]</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;">$network</span> <span style="color: #00008b;">in</span> <span style="color: #ff4500;">$networks</span><span style="color: #000000;">)</span> <span style="color: #000000;">{</span>
  <span style="color: #ff4500;">$network</span> <span style="color: #a9a9a9;">|</span> <span style="color: #0000ff;">select</span> <span style="color: #ff4500;">$networkName</span><span style="color: #a9a9a9;">,</span> <span style="color: #ff4500;">$Networkstatus</span>
  <span style="color: #000000;">}</span>
<span style="color: #000000;">}</span></pre>
<p>Usage:</p>
<blockquote><p>Get-NetworkConnectionStatus -ComputerName PC1</p></blockquote>
<p>Hope this helps&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-get-network-adapter-connection-status/1143/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell: Check laptop battery status</title>
		<link>http://techibee.com/powershell/powershell-check-laptop-battery-status/1035</link>
		<comments>http://techibee.com/powershell/powershell-check-laptop-battery-status/1035#comments</comments>
		<pubDate>Wed, 29 Jun 2011 19:00:28 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[query battery information]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1035</guid>
		<description><![CDATA[In this post, I will show you how to pragmatically query battery status in laptops using powershell. It is important to check batter status before performing some critical tasks like patch updates or service pack updates via some automation(s). If the laptop charging drains down in middle of the upgrade, it can corrupt the operating [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-10360"></div></div><p>In this post, I will show you how to pragmatically query battery status in laptops using powershell. It is important to check batter status before performing some critical tasks like patch updates or service pack updates via some automation(s). If the laptop charging drains down in middle of the upgrade, it can corrupt the operating system.</p>
<p>You can use below one liner to check the percentage of charging left in the battery:</p>
<pre class='PowerShellColorizedScript'><span style='color:#000000'>(</span><span style='color:#0000ff'>Get-WmiObject</span> <span style='color:#000080'>-Class</span> <span style='color:#8a2be2'>Win32_Battery</span><span style='color:#000000'>)</span><span style='color:#a9a9a9'>.</span><span style='color:#000000'>estimatedchargeremaining</span></pre>
<p>Similarly, if you want to how many more minutes this charging comes, you can use below code:</p>
<pre class='PowerShellColorizedScript'><span style='color:#000000'>(</span><span style='color:#0000ff'>Get-WmiObject</span> <span style='color:#000080'>-Class</span> <span style='color:#8a2be2'>Win32_Battery</span><span style='color:#000000'>)</span><span style='color:#a9a9a9'>.</span><span style='color:#000000'>EstimatedRunTime</span></pre>
<p>Hope this helps and you will have crash free upgrades on laptops.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-check-laptop-battery-status/1035/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerShell: Get CPU architecture on windows 7 computer</title>
		<link>http://techibee.com/powershell/powershell-get-cpu-architecture-on-windows-7-computer/1012</link>
		<comments>http://techibee.com/powershell/powershell-get-cpu-architecture-on-windows-7-computer/1012#comments</comments>
		<pubDate>Sun, 26 Jun 2011 15:49:23 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[cpu architecture]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[query cpu]]></category>
		<category><![CDATA[windows 7 cpu architecture]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1012</guid>
		<description><![CDATA[I wrote on the similar topic before. My earlier attempt was to determine OS architecture but this time, I am going to talk about querying CPU architecture using powershell code. It is needless to explain the difference between these two things. So, below is the code which helps you determine CPU architecture of a computer. function [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-10130"></div></div><p>I wrote on the similar topic <a href="http://techibee.com/powershell/get-operating-system-architecture32-bit-or-64-bit-using-powershell/689" target="_self">before</a>. My earlier attempt was to determine OS architecture but this time, I am going to talk about querying CPU architecture using powershell code. It is needless to explain the difference between these two things. <img src='http://techibee.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>So, below is the code which helps you determine CPU architecture of a computer.</p>
<pre class="PowerShellColorizedScript"><span style="color: #00008b;">function</span> <span style="color: #8a2be2;">Get-CPUArchitecture</span> <span style="color: #000000;">{</span>
<span style="color: #00008b;">if</span> <span style="color: #000000;">(</span><span style="c olor: #000000;">(</span><span style="color: #ff4500;">$ENV:Processor_Architecture</span> -eq <span style="color: #8b0000;">"x86"</span> <span style="color: #a9a9a9;">-and</span> <span style="color: #000000;">(</span><span style="color: #000 0ff;">test-path</span> <span style="color: #8a2be2;">env:PROCESSOR_ARCHITEW6432</span>)<span style="color: #000000;">)</span> <span style="color: #a9a9a9;">-or</span> <span style="color: #000000;">(</span><span style="color: #ff4500;">$ENV:Processor_Architecture</span> <span style="color: #a9a9a9;">-eq</span> <span style="color: #8b0000;">"AMD64"</span><span style="color: #000000;">)</span><span style="color: #000000;">)</span> <span style="color: #000000;">{</span>
<span style="color: #0000ff;">write-host</span> <span style="color: #8b0000;">"Detected 64-bit CPU architecture"</span>
<span style="color: #000000;">}</span> <span style="color: #00008b;">elseif</span> <span>(</span><span style="color: #ff4500;">$ENV:Processor_Architecture</span> <span style="color: #a9a9a9;">-eq</span> <span style="color: #8b0000;">'x86'</span><span>)</span> <span style="color: #000000;">{</span>
<span style="color: #0000ff;">write-host</span> <span style="color: #8b0000;">"Detected 32-bit CPU architecture"</span>
<span style="color: #000000;">}</span> <span style="color: #00008b;">else</span> <span style="color: #000000;">{</span>
<span style="color: #0000ff;">write-host</span> <span style="color: #8b0000;">"Unable to determine CPU architecture"</span>
<span style="color: #000000;">}</span>
<span style="color: #000000;">}</span></pre>
<p><a href="http://techibee.com/wp-content/uploads/2011/06/CPUArchitecture.png"><img class="aligncenter size-full wp-image-1013" title="CPUArchitecture" src="http://techibee.com/wp-content/uploads/2011/06/CPUArchitecture.png" alt="" width="676" height="146" /></a></p>
<p>Hope this helps&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/powershell-get-cpu-architecture-on-windows-7-computer/1012/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tip: Get the domain controller details using PowerShell</title>
		<link>http://techibee.com/powershell/tip-get-the-domain-controller-details-using-powershell/771</link>
		<comments>http://techibee.com/powershell/tip-get-the-domain-controller-details-using-powershell/771#comments</comments>
		<pubDate>Thu, 02 Sep 2010 13:51:40 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[ADScripts]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=771</guid>
		<description><![CDATA[  This small powershell command helps you to get the domain controller name currently in use. PS C:&#62; ([ADSI]&#8220;LDAP://RootDSE&#8221;).dnshostname DC1.Techibee.com PS C:&#62; You can also know to which site this DC belongs to. PS C:&#62; ([ADSI]&#8220;LDAP://RootDSE&#8221;).servername.tostring().split(&#8220;,&#8221;)[2].Split(&#8220;=&#8221;)[ 1] SITE1 PS C:&#62; Isn&#8217;t it looking a bit complex to query the site name? Any alternatives? Yes, we [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-7720"></div></div><p> </p>
<p>This small powershell command helps you to get the domain controller name currently in use.</p>
<blockquote><p>PS C:&gt; ([ADSI]&#8220;LDAP://RootDSE&#8221;).dnshostname<br />
DC1.Techibee.com<br />
PS C:&gt;</p></blockquote>
<p>You can also know to which site this DC belongs to.</p>
<blockquote><p>PS C:&gt; ([ADSI]&#8220;LDAP://RootDSE&#8221;).servername.tostring().split(&#8220;,&#8221;)[2].Split(&#8220;=&#8221;)[<br />
1]<br />
SITE1<br />
PS C:&gt;</p></blockquote>
<p>Isn&#8217;t it looking a bit complex to query the site name? Any alternatives? Yes, we do have one. Below helps you to query the Site name of DC you connected.</p>
<blockquote><p>import-module ActiveDirectory</p>
<p>Get-ADDomainController -Discover | select Site</p>
<p>Site<br />
&#8212;&#8211;<br />
SITE1</p></blockquote>
<p>Note that above command requries ActiveDirectory PowerShell module which is generally available in Windows 7. One more requirement to make ActiveDirectory Module work agaist your Active Directory is, your DCs should have ADWS(active directory web services) installed. These services comes by default with windows 2008 servers but on windows 2003 servers you need to install this additional components.</p>
<p>Refer to my old article about <a href="http://techibee.com/active-directory/active-directory-administrative-center-a-new-ad-interface-for-win7-and-win-2008/290" target="_blank">Active Directory Administrative Center </a>where I talked about ADWS for windows 2003.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/tip-get-the-domain-controller-details-using-powershell/771/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lock your workstation using PowerShell</title>
		<link>http://techibee.com/powershell/lock-your-workstation-using-powershell/352</link>
		<comments>http://techibee.com/powershell/lock-your-workstation-using-powershell/352#comments</comments>
		<pubDate>Thu, 18 Mar 2010 16:50:32 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=352</guid>
		<description><![CDATA[One other nice thing I found with PowerShell is it&#8217;s ability of using APIs by importing DLLs. Below is one example, where user32.dll is imported and LockWorkstation Function is invoked to lock the desktop. Btw, I grabbed this script from TechNet Library Function Lock-WorkStation { $signature = @&#8221; [DllImport("user32.dll", SetLastError = true)] public static extern bool [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-3530"></div></div><p>One other nice thing I found with PowerShell is it&#8217;s ability of using APIs by importing DLLs. Below is one example, where user32.dll is imported and LockWorkstation Function is invoked to lock the desktop. Btw, I grabbed this script from <a href="http://gallery.technet.microsoft.com/ScriptCenter/en-us/a2178d49-79cd-4b3d-918a-47e9c6800262" target="_blank">TechNet Library</a></p>
<blockquote><p>Function Lock-WorkStation {<br />
$signature = @&#8221;<br />
[DllImport("user32.dll", SetLastError = true)]<br />
public static extern bool LockWorkStation();<br />
&#8220;@</p>
<p>$LockWorkStation = Add-Type -memberDefinition $signature -name &#8220;Win32LockWorkStation&#8221; -namespace Win32Functions -passthru<br />
$LockWorkStation::LockWorkStation() | Out-Null<br />
}</p></blockquote>
<p>After executing above code, invoking &#8220;Lock-WorkStation&#8221; command from PowerShell window will lock your PC.</p>
<p>Happy Learning..,<br />
Sitaram Pamarthi</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/powershell/lock-your-workstation-using-powershell/352/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script to ping machines part of Active Directory Security Group</title>
		<link>http://techibee.com/active-directory/script-to-ping-machines-part-of-active-directory-security-group/150</link>
		<comments>http://techibee.com/active-directory/script-to-ping-machines-part-of-active-directory-security-group/150#comments</comments>
		<pubDate>Thu, 19 Nov 2009 08:31:00 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://techibee.com/sysadmins/script-to-ping-machines-part-of-active-directory-security-group/150</guid>
		<description><![CDATA[Today I want to turn my some of the scripting efforts to public. Sometimes I get requirements to see how many machines are online which are part of a AD security group. I worst method I used to follow was dumping the group member list to some text file and making use of a batch [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-1510"></div></div><div class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: 'Verdana','sans-serif'; font-size: 10pt;">Today I want to turn my some of the scripting efforts to public.<br /></span></div>
<div class="MsoNormal" style="margin: 0in 0in 0pt;"></div>
<div class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: 'Verdana','sans-serif'; font-size: 10pt;">Sometimes I get requirements to see how many machines are online which are part of a AD security group. I worst method I used to follow was dumping the group member list to some text file and making use of a batch script to ping the machine and check the status. This is pretty good but consuming some of my time for dumping and analyzing. So why below script is born….<br /></span></div>
<div class="MsoNormal" style="margin: 0in 0in 0pt;"></div>
<div class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: 'Verdana','sans-serif'; font-size: 10pt;">You just need to give the group DN in the script and execute it with cscript. That shows the machine status if it is online or not. Feel free to modify the script to match your requirements and let me know if I can be of any help.</span></div>
<div class="MsoNormal" style="margin: 0in 0in 0pt;"></div>
<div class="MsoNormal" style="margin: 0in 0in 0pt;">
<blockquote>&#8216;##########################################################################<br />&#8216;# Purpose : To check the ping status of computers part of a security group<br />&#8216;# Author&nbsp; : Sitaram Pamarthi<br />&#8216;# <br />&#8216;##########################################################################<br />&#8216;On Error Resume Next</p>
<p>&#8216; Replace with your group DN<br />GroupDN=&#8221;<a href="ldap://CN=Your/">ldap://CN=Your/</a> Group Name,OU=Your OU name,DC=domain,DC=com&#8221; </p>
<p>Set objGroup = GetObject(GroupDN)<br />objGroup.GetInfo <br />arrMemberOf = objGroup.GetEx(&#8220;member&#8221;)<br />For Each strMember in arrMemberOf<br />&nbsp; Set objGroup1 = GetObject(&#8220;LDAP://&#8221; &amp; strMember)<br />&nbsp; strHost=trim(objGroup1.dNSHostName)<br />&nbsp; set objPing = GetObject(&#8220;winmgmts:{impersonationLevel=impersonate}&#8221;).ExecQuery _<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&#8220;select * from Win32_PingStatus where address = &#8216;&#8221; &amp; strHost &amp; &#8220;&#8216;&#8221;)</p>
<p>&nbsp; for each objRetStatus in objPing<br />&nbsp;&nbsp;&nbsp; if IsNull(objRetStatus.StatusCode) or objRetStatus.StatusCode&lt;&gt;0 then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WScript.Echo strhost &amp; &#8220;&nbsp; ==&gt; host not reachable&#8221;<br />&nbsp;&nbsp;&nbsp; else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Ping = True<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wscript.echo strhost &amp; &#8221; ==&gt; Machine Reachable&#8221;<br />&nbsp;&nbsp;&nbsp; end if<br />&nbsp; next<br />Next</p>
<p>&#8216;#End of script.</p>
</blockquote>
</div>
<div class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: 'Verdana','sans-serif'; font-size: 10pt;">Happy Learning…,<br />Sitaram Pamarthi<br /></span></div>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/active-directory/script-to-ping-machines-part-of-active-directory-security-group/150/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick way to find hotfix installation status</title>
		<link>http://techibee.com/know-your-shell/quick-way-to-find-hotfix-installation-status/36</link>
		<comments>http://techibee.com/know-your-shell/quick-way-to-find-hotfix-installation-status/36#comments</comments>
		<pubDate>Mon, 06 Apr 2009 17:44:00 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Know your Shell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://techibee.com/~sysadmins/quick-way-to-find-hotfix-installation-status</guid>
		<description><![CDATA[I know there are varioud menthods for finding the hotfix installation status, but I felt this as very easy one. To find the hotfix installation status on local machine: wmic qfe where hotfixid=&#8221;KB958644&#8243; list full To find on a remote machine: wmic /node: qfe where hotfixid=&#8221;KB958644&#8243; list full To find on list of machines: o [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-370"></div></div><p>I know there are varioud menthods for finding the hotfix installation status, but I felt this as very easy one.</p>
<p><strong>To find the hotfix installation status on local machine:</strong></p>
<p>wmic qfe where hotfixid=&#8221;KB958644&#8243; list full</p>
<p><strong>To find on a remote machine:</strong></p>
<p>wmic /node:<remotemachine> qfe where hotfixid=&#8221;KB958644&#8243; list full</p>
<p><strong>To find on list of machines:</strong></p>
<p> o Place all machines into a text file(machine.txt)<br /> o Run the below batch file</p>
<p>=== File name: get-hotfix-status.bat ===</p>
<p>echo off<br />for /f &#8220;tokens=* delims= &#8221; %a in (test.txt) do wmic/Node:%a qfe where hotfixid=&#8221;KB958644&#8243; list full</p>
<p>=== End of file ===</p>
<p>Please comment if you know any better way.</p>
<p>Happy Learning,<br />Sitaram Pamarthi,</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/know-your-shell/quick-way-to-find-hotfix-installation-status/36/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

