What are some of the most useful yet little known features in the PowerShell language - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:56:14Zhttp://stackoverflow.com/feeds/question/893295http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang11What are some of the most useful yet little known features in the PowerShell languageAndy Schneider2009-05-21T14:45:23Z2009-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 > $a,$b,$c,$d = "A four word string".split()
65 > $a
A
66 > $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#8933217Answer by JaredPar for What are some of the most useful yet little known features in the PowerShell languageJaredPar2009-05-21T14:49:35Z2009-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> tf edit some\really\long\file\path.cpp
PS> 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#8935295Answer by Keith Hill for What are some of the most useful yet little known features in the PowerShell languageKeith Hill2009-05-21T15:23:20Z2009-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> $OFS = ', '
PS> "$(1..5)"
1, 2, 3, 4, 5
PS> $OFS = ';'
PS> "$(1..5)"
1;2;3;4;5
PS> $OFS = $null # set back to default
PS> "$(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> $files = dir *.iMayNotExist
PS> $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> $files = @(dir *.iMayNotExist)
PS> $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> $arr = '127.0.0.1','192.168.1.100','192.168.1.101'
PS> $ips = [system.net.ipaddress[]]$arr
PS> $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> $preamble = [System.Text.Encoding]::UTF8.GetPreamble()
PS> $preamble | foreach {"0x{0:X2}" -f $_}
0xEF
0xBB
0xBF
PS> $fileHeader = Get-Content Utf8File.txt -Enc byte -Total 3
PS> $fileheader | foreach {"0x{0:X2}" -f $_}
0xEF
0xBB
0xBF
PS> @(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#8961913Answer by Doug Finke for What are some of the most useful yet little known features in the PowerShell languageDoug Finke2009-05-22T02:53:15Z2009-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#8977685Answer by Steven Murawski for What are some of the most useful yet little known features in the PowerShell languageSteven Murawski2009-05-22T13:13:32Z2009-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#9030882Answer by hoge for What are some of the most useful yet little known features in the PowerShell languagehoge2009-05-24T04:41:47Z2009-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#9048085Answer by Josh Einstein for What are some of the most useful yet little known features in the PowerShell languageJosh Einstein2009-05-24T22:40:41Z2009-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 {
&$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#9110813Answer by Bratch for What are some of the most useful yet little known features in the PowerShell languageBratch2009-05-26T14:44:26Z2009-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>