Articles

PowerShell articles, tutorials, and guides from community experts.

Kirk Munro

Windows 8"¦reimagined?

The series of releases of client versions of Microsoft Windows seems to suffer all too much the same fate as Star Trek movies have in the past. This concept has already been discussed before, and there are even blog posts about it, such as Ewan Spence"™s comparison of Windows releases between …

Kirk Munro

PowerSE 2.7 KB: PowerShell profile does not load on startup

Note: This blog post refers to an issue identified in PowerSE 2.7.0. It has been corrected in PowerSE 2.7.1, which is now available. With the release we published yesterday, both PowerSE and PowerWF received a new feature: product-specific profiles. This feature allows you to have profile scripts …

Kirk Munro

PowerWF and PowerSE 2.7 are now available

This morning PowerWF and PowerSE 2.7 were released to the web and they can now be downloaded from http://www.powerwf.com. These releases offer a lot of new value to PowerWF and PowerSE users, as follows: PowerWF 2.7 Highlights New Start Page with New Workflows The start page in PowerWF has been …

Kirk Munro

PowerShell MVP for 2012

Every year around Christmas I anxiously await the New Year to see if I receive the Microsoft MVP award again that year. Well that email came on January 1, 2012, and I"™m quite thrilled about this one because it"™s a milestone this time (year 5 as a PowerShell MVP). Thanks to the community …

Keith Hill

Windows PowerShell Version 3 Simplified Syntax

Windows PowerShell version 3 introduces a simplified syntax for the Where-Object and Foreach-Object cmdlets. The simplified syntax shown below, eliminates the curly braces as well as the need for the special variable $_. C:\PS> Get-Process | Where PM -gt 100MB ... C:\PS> Get-Process | Foreach …