Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Post an article
Translate this page
Powered by
Microsoft® Translator
Wikis - Page Details
First published by
Chen V
(MVP, Microsoft Community Contributor)
When:
24 Mar 2014 3:46 AM
Last revision by
Benoit Jester [MVP]
(MVP, Microsoft Community Contributor)
When:
26 Mar 2014 12:18 AM
Revisions:
3
Comments:
1
Options
Subscribe to Article (RSS)
Share this
Engage!
Wiki Ninjas Blog
(
Announcements
)
Wiki Ninjas on Twitter
TechNet Wiki Discussion Forum
Can You Improve This Article?
Positively!
Click Sign In to add the tip, solution, correction or comment that will help other users.
Report inappropriate content using
these instructions
.
Wiki
>
TechNet Articles
>
How to know your PowerShell version details?
How to know your PowerShell version details?
Article
History
How to know your PowerShell version details?
Many Admins are using PowerShell scripts to automate few tasks, either they develop their own script or they may download from Technet Script Gallery. Use the script as you wish but before that it's good to know about your PowerShell Version
Solution:
$PSVersionTable
Name Value
---- -----
PSVersion 4.0
WSManStackVersion 3.0
SerializationVersion 1.1.0.1
CLRVersion 4.0.30319.18063
BuildVersion 6.3.9421.0
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0}
PSRemotingProtocolVersion 2.2
($PSVersionTable).PSVersion
Major Minor Build Revision
----- ----- ----- --------
4 0 -1 -1
($PSVersionTable).PSCompatibleVersions
Major Minor Build Revision
----- ----- ----- --------
1 0 -1 -1
2 0 -1 -1
3 0 -1 -1
4 0 -1 -1
($PSVersionTable).PSRemotingProtocolVersion
Major Minor Build Revision
----- ----- ----- --------
2 2 -1 -1
en-US
,
PowerShell
,
PowerShell version
Sort by:
Published Date
|
Most Recent
|
Most Useful
Comments
Kamaraj Ulaganathan
19 Oct 2014 10:25 PM
thanks
Page 1 of 1 (1 items)