Created
May 3, 2019 01:22
-
-
Save irlperu/b2462d6d1f96bee4567967a487be8997 to your computer and use it in GitHub Desktop.
Get VM Extensions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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