How to list the azure VM extensions using Azure CLI in PowerShell?


To list all the azure VM extensions using Azure CLI, we can use the “az vm extension” command.

Before running this command make sure you are connected with the Azure cloud account and the Azure subscription. Once we run the command for the extension we need to provide the VM name and the resource group name as shown below.

PS C:\> az vm extension list --vm-name Win2k16VM1 -g TESTVMRG

The output will be in the JSON format, we can use the parameter -otable to get the output in the table format.

PS C:\> az vm extension list --vm-name Win2k16VM1 -g TESTVMRG -otable

Output

Updated on: 02-Sep-2021

800 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements