PowerShell Version Details
In order to know the installed version of PowerShell on your Windows system you can follow the below steps,
- Open PowerShell, by typing powershell in Run,
- Type $PSVersionTable,
PS C:\Users\code2Care> $PSVersionTable Name Value ---- ----- PSVersion 5.1.18362.752 PSEdition Desktop PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} BuildVersion 10.0.18362.752 CLRVersion 4.0.30319.42000 WSManStackVersion 3.0 PSRemotingProtocolVersion 2.3 SerializationVersion 1.1.0.1
If you want to know just the version in a more detailed manner you can try $PSVersionTable.PSVersion
PS C:\Users\code2Care> $PSVersionTable.PSVersion
Major Minor Build Revision
----- ----- ----- --------
5 1 18362 752
More Posts related to Powershell,
- [Fix] Powershell - Term winget is not recognized as the name of a cmdlet function or script file
- Download Google Chrome setup exe file using PowerShell
- Run JumpCloud Commands in Powershell
- How to check PowerShell version
- How to upgrade PowerShell on Mac
- How to Open PowerShell on Mac?
- How to add sleep in Powershell Script
- How to switch to Powershell on Mac Terminal
- Update Powershell Using Command Line
- How to install powershell on macOS
- PowerShell ps1 script is not digitally signed, you cannot run this script on the current system
- How to Identify installed PowerShell version
More Posts:
- Merge multiple zip files without unzipping (extracting) - HowTos
- Fix Error 2711 SQL RBS client - The installer has encountered an unexpected error. The specified Feature name ('Docs') not found in Feature table - SharePoint
- BeanDefinitionStoreException IOException parsing XML document from class path resource [spring.xml] - Java
- Managed Metadata error - The data returned from the tagging UI was not formatted correctly - SharePoint
- Installing Google Cloud macOS SDK - Google
- How to add hours and minutes to Java Instant - Java
- Share Image to WhatsApp with Caption from your Android App - WhatsApp
- Java: TimeZone List with GMT/UTC Offset - Java