What are some of the most useful yet little known features in the PowerShell language - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:56:14Z http://stackoverflow.com/feeds/question/893295 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang 11 What are some of the most useful yet little known features in the PowerShell language Andy Schneider 2009-05-21T14:45:23Z 2009-05-31T20:25:59Z <p>A while back I was reading about multi-variable assignments in PowerShell. This lets you do things like this</p> <pre><code>64 &gt; $a,$b,$c,$d = "A four word string".split() 65 &gt; $a A 66 &gt; $b four </code></pre> <p>Or you can swap variables in a single statement</p> <pre><code>$a,$b = $b,$a </code></pre> <p>What little known nuggets of PowerShell have you come across that you think may not be as well known as they should be?</p> http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/893321#893321 7 Answer by JaredPar for What are some of the most useful yet little known features in the PowerShell language JaredPar 2009-05-21T14:49:35Z 2009-05-21T14:49:35Z <p>The <code>$$</code> command. I often have to do repeated operations on the same file path. For instance check out a file and then open it up in VIM. The <code>$$</code> feature makes this trivial</p> <pre><code>PS&gt; tf edit some\really\long\file\path.cpp PS&gt; gvim $$ </code></pre> <p>It's short and simple but it saves a lot of time.</p> http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/893529#893529 5 Answer by Keith Hill for What are some of the most useful yet little known features in the PowerShell language Keith Hill 2009-05-21T15:23:20Z 2009-05-21T15:23:20Z <p>$OFS - <a href="http://keithhill.spaces.live.com/blog/cns!5A8D2641E0963A97!6957.entry" rel="nofollow">output field separator</a>. A handy way to specify how array elements are separated when rendered to a string:</p> <pre><code>PS&gt; $OFS = ', ' PS&gt; "$(1..5)" 1, 2, 3, 4, 5 PS&gt; $OFS = ';' PS&gt; "$(1..5)" 1;2;3;4;5 PS&gt; $OFS = $null # set back to default PS&gt; "$(1..5)" 1 2 3 4 5 </code></pre> <p><a href="http://keithhill.spaces.live.com/blog/cns!5A8D2641E0963A97!816.entry" rel="nofollow">Always guaranteeing you get an array result</a>. Consider this code:</p> <pre><code>PS&gt; $files = dir *.iMayNotExist PS&gt; $files.length </code></pre> <p>$files in this case may be $null, a scalar value or an array of values. $files.length isn't going to give you the number of files found for $null or for a single file. In the single file case, you will get the file's size!! Whenever I'm not sure how much data I'll get back I always enclose the command in an array subexpression like so:</p> <pre><code>PS&gt; $files = @(dir *.iMayNotExist) PS&gt; $files.length # always returns number of files in array </code></pre> <p>Then $files will always be an array. It may be empty or have only a single element in it but it <em>will</em> be an array. This makes reasoning with the result much simpler.</p> <p>Array covariance support:</p> <pre><code>PS&gt; $arr = '127.0.0.1','192.168.1.100','192.168.1.101' PS&gt; $ips = [system.net.ipaddress[]]$arr PS&gt; $ips | ft IPAddressToString, AddressFamily -auto IPAddressToString AddressFamily ----------------- ------------- 127.0.0.1 InterNetwork 192.168.1.100 InterNetwork 192.168.1.101 InterNetwork </code></pre> <p><a href="http://keithhill.spaces.live.com/blog/cns!5A8D2641E0963A97!6159.entry" rel="nofollow">Comparing arrays using Compare-Object</a>:</p> <pre><code>PS&gt; $preamble = [System.Text.Encoding]::UTF8.GetPreamble() PS&gt; $preamble | foreach {"0x{0:X2}" -f $_} 0xEF 0xBB 0xBF PS&gt; $fileHeader = Get-Content Utf8File.txt -Enc byte -Total 3 PS&gt; $fileheader | foreach {"0x{0:X2}" -f $_} 0xEF 0xBB 0xBF PS&gt; @(Compare-Object $preamble $fileHeader -sync 0).Length -eq 0 True </code></pre> <p>Fore more stuff like this, check out my free eBook - <a href="http://tinyurl.com/efposh" rel="nofollow">Effective PowerShell</a>.</p> http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/896191#896191 3 Answer by Doug Finke for What are some of the most useful yet little known features in the PowerShell language Doug Finke 2009-05-22T02:53:15Z 2009-05-22T02:53:15Z <p>Along the lines of multi-variable assignments.</p> <p>$list = 1,2,3,4</p> <p>While($list) {<br> $head, $list = $list<br> $head<br> }<br></p> <p>1<br> 2<br> 3<br> 4</p> http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/897768#897768 5 Answer by Steven Murawski for What are some of the most useful yet little known features in the PowerShell language Steven Murawski 2009-05-22T13:13:32Z 2009-05-31T20:25:59Z <p>A feature that I find is often overlooked is the ability to pass a file to a switch statement.</p> <p>Switch will iterate through the lines and match against strings (or regular expressions with the -regex parameter), content of variables, numbers, or the line can be passed into an expression to be evaluated as $true or $false</p> <pre><code>switch -file 'C:\test.txt' { 'sometext' {Do-Something} $pwd {Do-SomethingElse} 42 {Write-Host "That's the answer."} {Test-Path $_} {Do-AThirdThing} default {'Nothing else matched'} } </code></pre> http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/903088#903088 2 Answer by hoge for What are some of the most useful yet little known features in the PowerShell language hoge 2009-05-24T04:41:47Z 2009-05-24T04:41:47Z <p>operator chain 1..1000 -lt 800 -gt 400 -like "?[5-9]0" -replace 0 -as "int[]" -as "char[]" -notmatch "\d"</p> <p>this is faster than Where-Object.</p> http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/904808#904808 5 Answer by Josh Einstein for What are some of the most useful yet little known features in the PowerShell language Josh Einstein 2009-05-24T22:40:41Z 2009-05-24T22:40:41Z <p>By far the most powerful feature of PowerShell is its <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.scriptblock%28VS.85%29.aspx" rel="nofollow">ScriptBlock</a> support. The fact that you can so concisely pass around what are effectively anonymous methods without any type constraints are about as powerful as C++ function pointers and as easy as C# or F# lambdas.</p> <p>I mean how cool is it that using ScriptBlocks you can implement a "using" statement (which PowerShell doesn't have inherently). Or, pre-v2 you could even implement <a href="http://weblogs.asp.net/adweigert/archive/2007/10/10/powershell-try-catch-finally-comes-to-life.aspx" rel="nofollow">try-catch-finally</a>.</p> <pre><code>function Using([Object]$Resource,[ScriptBlock]$Script) { try { &amp;$Script } finally { if ($Resource -is [IDisposable]) { $Resource.Dispose() } } } Using ($File = [IO.File]::CreateText("$PWD\blah.txt")) { $File.WriteLine(...) } </code></pre> <p>How cool is that!</p> http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/911081#911081 3 Answer by Bratch for What are some of the most useful yet little known features in the PowerShell language Bratch 2009-05-26T14:44:26Z 2009-05-26T14:44:26Z <p>I've been using this:</p> <pre><code>if (!$?) { # if previous command was not successful Do some stuff } </code></pre> <p>and I also use $_ (current pipeline object) quite a bit, but these might be more known than other stuff.</p>