How to check Azure PowerShell Version

You need to perform the 2 steps below to check Azure PowerShell Version.

  1. Open the Windows PowerShell ISE with Run as administrator mode.
check azure powershell version

2. Run the below command.

(Get-Module -ListAvailable | Where-Object{ $_.Name -eq 'Azure' }) ` | Select Version, Name, PowerShellVersion;

After running the above command, I got the Azure PowerShell version successfully.

PS C:\windows\system32> (Get-Module -ListAvailable | Where-Object{ $_.Name -eq 'Azure' }) ` | Select Version, Name, PowerShellVersion;

Version Name  PowerShellVersion
-------      ----        -----------------
5.3.1     Azure        5.0       

You can see the same expected output in the screenshot below.

How to check Azure PowerShell Version

Video Tutorial

You may also like following the articles below

Azure Virtual Machine

DOWNLOAD FREE AZURE VIRTUAL MACHINE PDF

Download our free 25+ page Azure Virtual Machine guide and master cloud deployment today!