Check VM extension versions?
Check the VM extension versions with PowerShell
John Savill
August 1, 2017
1 Min Read
Q. How can I check the versions of VM extensions that are available in Azure?
A. Using PowerShell it is easy to check on the version of agents. You need to know the publisher and image type. All available extensions and their version can be viewed with:
Get-AzureRmVmImagePublisher -Location EastUS | `
Get-AzureRmVMExtensionImageType | `
Get-AzureRmVMExtensionImage | Select Type, Version, PublisherName | ft -AutoSize
To view information for a specific agent enter the specific values, for example:
Get-AzureRmVMExtensionImage -Location EastUS -PublisherName Microsoft.EnterpriseCloud.Monitoring -Type MicrosoftMonitoringAgent | select *
About the Author
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
You May Also Like