• Welcome, Guest. Please login.
 

How to determine installed PowerShell version

Started by asd, June 17, 2018, 09:18:42 pm

Previous topic - Next topic

asd

How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?

admin

June 17, 2018, 09:28:44 pm #1 Last Edit: June 30, 2018, 08:34:45 pm by admin
Hi ASD,

There is a lots of commands from where you can find the PowerShell version, First two command is best and i am recommending to detect the version, but you can use any of them as all give the same results.

Command List : -
get-host
$psversiontable
$PSVersionTable.PSVersion
$Host.Version
(Get-Host).Version


Sample Results you will get from bottom three commands
Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      15125  221
Regards,
YourITadmin

MichaelVoida

Hi
 
Just joined the forum and I am sure I will be help ful for the community and make sure I will not break any rules.