UPDATE 2 JULY 2013: Microsoft is informing MVPs that the fix is in, and new help files should be downloadable by (at latest) the morning of 3 July 2013. So …...
I hate to seem negative, but I’ve noticed a few things about a number of the advanced entries that seem like folks didn’t read the instructions, or just weren’t careful …...
This time of the year always feels like someone is holding down the fast forward button. I blinked and here we are Friday morning another week of scripts in the …...
 First of all, congratulations! It looks to me like a lot of learning is going on; the 2nd event entries look really good to me. I especially liked the way …...
I thought I’d mentioned this last time (tap tap, this thing on?), but maybe not: don’t format the output of your functions. The minute a function includes Format-*, you’ve trapped …...
A question came up about piping between advanced functions. The input to the second function might be an array. To illustrate how this works imagine a function that gets disk information – or better still use this...
A question on the forum asked about finding the accounts and SIDs on the local machine. function get-SID { param ( string$computername = $env:COMPUTERNAME ) Get-WmiObject -Class Win32_AccountSID -ComputerName...