List all VM sizes in Microsoft Azure per Location

Sometimes it’s realy useful to list all the different VM sizes in Microsoft Azure for one Location, for example ‘West Europe’. You can see for example: the VM size, the number of cores, Memory, Max disk count, OS disk size, Resource disk size, etc.

Very powerful to have an overview when choosing the right virtual machine within Microsoft Azure IaaS.


## Login to your subscription using PowerShell
Login-AzureRmAccount
## List all VM sizes in Location 'West Europe'
Get-AzureRmVMSize -Location 'West Europe'

2017-02-28_15h25_57