PowerShell Version 3 Language Improvements - Part 1
Member Enumeration
In PowerShell Version 2, I found myself quite often running a cmdlet, then piping that cmdlet to Select-Object -Expand PropertyName, for example:In PowerShell Version 3, the same result can be acheived by running:
Not only is the new syntax easier to use, but it's also quicker, see below. The old method takes 36 seconds to run, the same command using the new method, 16 seconds!
In addition to the improvement listed above. Length and Count properties have been made available to all variables, even if the variable isn't an array, see below:
This is designed to assist in looping logic, so you don't need to determine if an object is just one or many before you go ahead and loop through it. Previously, I got around this using foreach.