vote up 11 vote down star
10

A while back I was reading about multi-variable assignments in PowerShell. This lets you do things like this

64 >  $a,$b,$c,$d = "A four word string".split()

65 >  $a
A

66 >  $b
four

Or you can swap variables in a single statement

$a,$b = $b,$a

What little known nuggets of PowerShell have you come across that you think may not be as well known as they should be?

flag
Andy, are you restricting this to PowerShell 1.0, or is 2.0 ok to discuss? – John Saunders May 21 at 14:53
Any version is great – Andy Schneider May 21 at 15:00
1  
As people post ideas, it would be helpful to say which version (1/2) they are supported in. – Nate Bross May 21 at 15:21
2  
This should be community wiki. – JasonMArcher May 21 at 22:19
1  
Awesome question, Andy. I'm posting this one on the next podcast. – halr9000 May 31 at 17:45
show 1 more comment

7 Answers

vote up 6 vote down check

The $$ 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 $$ feature makes this trivial

PS> tf edit some\really\long\file\path.cpp
PS> gvim $$

It's short and simple but it saves a lot of time.

link|flag
never knew about that.. very useful little tidbit. Thanks! – Andy Schneider May 21 at 15:01
Really, -1? Does someone care to explain why they thought this was a bad answer? – JaredPar May 21 at 22:55
THere are a lot of great answers and I thank everyone who posted something up here. I chose this one for a couple reasons. I personally did not know about $$ and also it was the first answer. Thanks again to everyone who chimed in. Lots of great input! – Andy Schneider Jun 12 at 20:17
vote up 5 vote down

$OFS - output field separator. A handy way to specify how array elements are separated when rendered to a string:

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

Always guaranteeing you get an array result. Consider this code:

PS> $files = dir *.iMayNotExist
PS> $files.length

$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:

PS> $files = @(dir *.iMayNotExist)
PS> $files.length # always returns number of files in array

Then $files will always be an array. It may be empty or have only a single element in it but it will be an array. This makes reasoning with the result much simpler.

Array covariance support:

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

Comparing arrays using Compare-Object:

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

Fore more stuff like this, check out my free eBook - Effective PowerShell.

link|flag
vote up 5 vote down

By far the most powerful feature of PowerShell is its ScriptBlock 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.

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 try-catch-finally.

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(...)
}

How cool is that!

link|flag
vote up 4 vote down

A feature that I find is often overlooked is the ability to pass a file to a switch statement.

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

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'} 
}
link|flag
1  
I think Bruce's book pointed out that switch was one of the most powerful language constructs in PowerShell. Passing in a file is very cool. Thanks Steve. – Andy Schneider May 22 at 13:26
That he did.. and I find the file part the most overlooked. Thanks for the question! – Steven Murawski May 23 at 3:01
vote up 3 vote down

Along the lines of multi-variable assignments.

$list = 1,2,3,4

While($list) {
$head, $list = $list
$head
}

1
2
3
4

link|flag
Thank you for making this a community wiki answer. – JasonMArcher May 25 at 21:38
vote up 3 vote down

I've been using this:

if (!$?) {  # if previous command was not successful
    Do some stuff
}

and I also use $_ (current pipeline object) quite a bit, but these might be more known than other stuff.

link|flag
vote up 1 vote down

operator chain 1..1000 -lt 800 -gt 400 -like "?[5-9]0" -replace 0 -as "int[]" -as "char[]" -notmatch "\d"

this is faster than Where-Object.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.