我试图从存储在“我的图像”中的自定义图像中找到Azure ImageName。使用PowerShell可以做到吗?

最佳答案

Get-AzureVMImage | where { $_.Label -match '<<your-image-label>>'}

要么
Get-AzureVMImage | where { $_.ImageName -match '<<your-image-name>>'}

08-28 13:15