Introduction

Powershell has evolved over the years, with some old functionality not working in later versions.

If you have created a script in Powershell v1 or v2, it might not work with Powershell v3 or later. It is possible using a simple command to change the version of Powershell.

Which version of Powershell you are running depends on the installed Windows version.

The general recommendation is to update your environment to the latest version of Powershell, so all scripts are created for the same version. Talking from experience, failure to do so will cause a lot of issues.

In this blog post, I cover how to run the Powershell window using another version.

Powershell versions for each Windows OS

Here is a table of the different Powershell versions that come shipped with each version of Windows:

VersionReleasedWindows OS
Powershell 1.0November 2006Windows Server 2008
Powershell 2.0October 2009Windows Server 2008 R2 (SP1), Windows 7 (SP1)
Powershell 3.0September 2012Windows Server 2012, Windows 8
Powershell 4.0October 2013Windows Server 2012 R2, Windows 8.1
Powershell 5.0February 2016Windows 10
Powershell 5.1January 2017Windows Server 2016, Windows 10 Anniversary Update
Powershell Core 6.0January 2018Windows 10, macOS, Linux, Windows Server 2019
Powershell Core 6.1September 2018Windows 10, macOS, Linux, Windows Server 2019
Powershell Core 6.2March 2019Windows 10, macOS, Linux, Windows Server 2019
Powershell 7UpcomingUpcoming
Powershell versions for different versions of Windows

How to check the version of Powershell

To check the Powershell version, open a Powershell command prompt, and enter:

$PSVersionTable
Check Powershell version using PSVersionTable

Above, you can see that the command returns the version of Powershell.

How to change to another version of Powershell

To change the version to v2, enter this command on a machine:

powershell -version 2.0

Update environment to latest Powershell version

Unless you have a good reason not to, I highly recommend upgrading all your machines in your environment to the latest Powershell version.

One way of doing this is through MEMCM (SCCM). Just create an application with the latest Windows Management Framework (WMF), and deploy it to your clients.

Conclusion

Changing the version of Powershell will be required in some cases, but in most cases you should upgrade all clients to the latest version of Powershell.

I hope that you have found the blog post helpful. Let me know if I’ve missed anything!

Sources

LEAVE A REPLY

Please enter your comment!
Please enter your name here