Have you ever been in the situation that your Azure PowerShell command isn’t working? First try to update your Azure PowerShell version!

How? Simple, by running the following command with local Administrator rights on your machine.

Install-Module AzureRM -Force
Install-Module Azure -Force

Installing Powerrshell ARM update Installing Powerrshell ARM update

If you would like to now what has been changed in the latest release of the Azure cmdlets check: https://github.com/Azure/azure-powershell/releases

Are you wondering what Azure Powershell version you are running? Then you could use the command below:

Get-Module -ListAvailable -Name Azure -Refresh
Get-Module -ListAvailable -Name AzureRM -Refresh