使用 Azure Powershell - 如何获取 Windows Server Data Center 最新映像的映像名称

使用 Azure Powershell - 如何获取 Windows Server Data Center 最新映像的映像名称

VM使用创建了一个Windows Server 2012 R2。现在尝试使用以下“PS 5.0”脚本获取 Windows Server 2012 R2 Datacenter 最新映像的映像名称。但它给出了以下错误:

PS 脚本

Get-AzureVMImage | where {$_.ImageFamily -eq "Windows Server 2012 R2
Datacenter" | sort PublishedDate -Descending } | select -Last 1 | Select
PublishedDate,ImageFamily,ImageName | FL

错误:

At line:3 char:14
+ PublishedDate,ImageFamily,ImageName | FL
+              ~
Missing argument in parameter list.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : MissingArgument

答案1

您的脚本对我有用,我的 powershell 版本是4.4.1

PS C:\Users\jason> Get-Module -ListAvailable -Name Azure -Refresh


    Directory: C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement


ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Manifest   4.4.1      Azure                               {Get-AzureAutomationCertificate, Get-AzureAutomationConnection, New-AzureAutomationConnection, Remove-AzureAutomationConnection...}

以下是该脚本的输出:

PS C:\Users\jason> Get-AzureVMImage | where { $_.imagefamily -eq "Windows Server 2012 R2 Datacenter" } | sort Publicsheddate -Descending | select -Last 1 | select PublishedDate,ImageFamily,ImageName | fl


PublishedDate : 5/10/2017 3:00:00 PM
ImageFamily   : Windows Server 2012 R2 Datacenter
ImageName     : a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-20170510-en.us-127GB.vhd

请检查您的Azure PowerShell 版本并再次测试该脚本。

我们可以找到Azure PowerShell版本信息这里

希望这可以帮助:)

相关内容