PowerShell RSS

Follow The Programmer Blog RSS feed to stay up to date with the latest programming tutorials regarding anything PowerShell. If you're looking to upgrade your software developer shirt collection we offer some pretty cool programmer shirts. For more of the latest developer news and programming tutorials visit The Programmer Blog. View all programming tutorials tagged with PowerShell below:


PowerShell

PowerShell - Determine installed PowerShell version

Determining the installed PowerShell version on your machine is pretty straightforward. Though there is a few gotcha's so let's go over how to get your currently installed PowerShell version. Solution: Use $PSVersionTable.PSVersion to determine the engine version. If the variable does not exist, you can assume the installed version of PowerShell is version 1.0. PS C:\> $PSVersionTable.PSVersion Major Minor Build Revision ----- ----- -----...

Read more