Check PowerShell Module Version

Learn how to check the version of installed PowerShell modules.

John Savill

April 18, 2014

1 Min Read
checkmark

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 

About the Author

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.

You May Also Like