如何确定在Cloud Service上运行的来宾操作系统版本?我无法在旧版(https://manage.windowsazure.com)或新版(https://portal.azure.com)Azure门户中找到此信息。
我的云服务设置为使用" *"作为osVersion所以我意识到随着新版本的发布,客户操作系统会得到更新。我只是想知道我目前正在运行什么版本。
您可能会问为什么我需要知道?目前我想知道我的VM是否正在运行支持.NET v4.5.2的新客户操作系统。但更广泛的问题仍然适用。
答案 0 :(得分:5)
您可以使用https://resources.azure.com浏览到Cloud Service资源。这将揭示OSVersion属性。
它还显示了用于检索它的PowerShell命令,它应该类似于:\
Get-AzureRmResource –ResourceGroupName <name> –ResourceType Microsoft.ClassicCompute/domainNames/slots/roles –ResourceName <cloudservicename/slot/rolename> –ApiVersion 2015-06-01 | select –ExpandProperty Properties | select OsVersion