Skip to content

Instantly share code, notes, and snippets.

@irlperu
Created May 3, 2019 01:22
Show Gist options
  • Save irlperu/b2462d6d1f96bee4567967a487be8997 to your computer and use it in GitHub Desktop.
Save irlperu/b2462d6d1f96bee4567967a487be8997 to your computer and use it in GitHub Desktop.
Get VM Extensions
# Discover VM extensions available in a Region - change out EastUS2 to the region you need
# Windows VM's
# https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/features-windows#run-vm-extensions
Get-AzVmImagePublisher -Location "EastUS2" | Get-AzVMExtensionImageType | Get-AzVMExtensionImage | Select Type, Version
# Linux VM's
# https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/features-linux
az vm extension image list --location westus --output table
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment