Share via


Azure PowerShell Get to know about availability of the VM sizes

You may know that all Azure regions does not provide all types and sizes of VMs. So while designing a deployment it is important to understand what is in the store,

A simple PowerShell would give you list of VM Sizes

Get-AzureRmVMSize -location eastus

image

You may also dump this to a .csv file

Get-AzureRmVMSize -location eastus | Export-CSV C:\temp\VMSize_EastUS.csv

Namoskar!!!