我试图从存储在“我的图像”中的自定义图像中找到Azure ImageName。使用PowerShell可以做到吗? 最佳答案 Get-AzureVMImage | where { $_.Label -match '<<your-image-label>>'} 要么Get-AzureVMImage | where { $_.ImageName -match '<<your-image-name>>'}