Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Learn how to check the version of installed PowerShell modules.
April 18, 2014
Q: How can I check the version of a PowerShell module?
A: To check the version of a module in your PowerShell environment, use (Get-Module ).Version. For example:
PS C:> (Get-Module Azure).VersionMajor Minor Build Revision----- ----- ----- --------0 7 3 1
You May Also Like