How to get all the available azure VM images using Azure CLI in PowerShell?


To get all the available azure VM images using Azure CLI, you can use the command az vm image.

The below command will retrieve all the available azure images in the marketplace.

PS C:\> az vm image list --all

The above command will take some time to retrieve the output. To get the output into the table format, use the below command.

PS C:\> az vm image list --all -otable

To retrieve the images from the particular location, use the -l or --location parameter.

PS C:\> az vm image list -l eastus -otable

Output

To get the VM images from the specific publisher,

PS C:\> az vm image list -l eastus -p MicrosoftWindowsServer --all -otable

Updated on: 02-Sep-2021

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements