Posts Tagged ‘powershell’

Recently, I saw someone that had developed a script on the CTP3 drop and was then having trouble running it on v1 of PowerShell.  Eventually it turned out that he was using v2 features in his script.  Most of you know that we are trying to keep the next version of PowerShell compatible with v1 [...]

Wednesday, February 10th, 2010 at 07:53 | 0 comments
Categories: powershell

It is important to note that cmdlet parameters can have assigned alias names. They are not always easy to find but they are there. This is why you can say -ea instead of -errorAction. Use this code to locate the alias parameter names of any cmdlet: ‘Get-Childitem’ | Foreach-Object { (get-command $_).parameters | % { [...]

Thursday, January 21st, 2010 at 20:38 | 0 comments
Categories: powershell

Microsoft Windows PowerShell command line shell and scripting language helps IT professionals achieve greater control and productivity. Using a new admin-focused scripting language, more than 130 standard command line tools, and consistent syntax and utilities, Windows PowerShell allows IT professionals to more easily control system administration and accelerate automation. Windows PowerShell is easy to adopt, [...]

Friday, October 2nd, 2009 at 13:18 | 0 comments
Categories: windows
TOP