Articles

PowerShell articles, tutorials, and guides from community experts.

Don Jones
PowerShell for Admins

One of the ballyhooed new features in PowerShell v3 is the new “simplified” syntax for Where-Object and ForEach-Object. I’m going to focus on the former for this article. In essence, instead of doing this: Get-Service | Where-Object { $_.Status -eq 'Running' } You can now do this …