Get-AzureRmResource:找不到与参数名称“ Tag”匹配的参数

时间:2018-07-24 12:37:57

标签: .net visual-studio azure powershell azure-powershell

所以我完全被这个困扰。

问题

我有一个Powershell脚本(.ps1文件),该脚本有时会执行以下操作:

Import-Module AzureRM

Login-AzureRmAccount -Credential $azureCredentials | out-null
Select-AzureRmSubscription -SubscriptionId $azureSubscriptionId -TenantId $azureTenantId | out-null

Write-Host (ConvertTo-Json((Get-AzureRmResource -Tag @{ "env"="dev"}) | Select Name, Location))

我通过执行以下操作在.NET控制台应用程序中运行脚本:

Dim process = New Process() With {.StartInfo = New ProcessStartInfo With {
    .FileName = "powershell.exe",
    .Arguments = "-ExecutionPolicy ByPass -file """ & _powershellScriptsPath & "\get-webapps.ps1",
    .UseShellExecute = False,
    .RedirectStandardOutput = True,
    .RedirectStandardError = True
}}

无论是从ISE还是从控制台应用程序运行,脚本都可以在我的笔记本电脑上正常运行。

然后在我的桌面上,它在ISE中工作正常,但在控制台应用程序中失败,并显示以下错误消息:

Get-AzureRmResource : A parameter cannot be found that matches parameter name 'Tag'.

我想不通。

一些见识

我的$PSVersionTable在两台计算机上都是相同的:

Name                           Value                                                                                                                                                                                                                                                
----                           -----                                                                                                                                                                                                                                                
PSVersion                      5.1.17134.165                                                                                                                                                                                                                                        
PSEdition                      Desktop                                                                                                                                                                                                                                              
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}                                                                                                                                                                                                                              
BuildVersion                   10.0.17134.165                                                                                                                                                                                                                                       
CLRVersion                     4.0.30319.42000                                                                                                                                                                                                                                      
WSManStackVersion              3.0                                                                                                                                                                                                                                                  
PSRemotingProtocolVersion      2.3                                                                                                                                                                                                                                                  
SerializationVersion           1.1.0.1

我的笔记本电脑具有AzureRm模块的6.1.0版本:

PS C:\WINDOWS\system32> Get-InstalledModule -Name AzureRm

Version    Name                                Repository           Description                                                                                                                                                                                                     
-------    ----                                ----------           -----------                                                                                                                                                                                                     
6.1.0      AzureRM                             PSGallery            Azure Resource Manager Module

我的桌面版本为6.5.0:

PS C:\WINDOWS\system32> Get-InstalledModule -Name AzureRm

Version    Name                                Repository           Description                                                                                                                                                                                                     
-------    ----                                ----------           -----------                                                                                                                                                                                                     
6.5.0      AzureRM                             PSGallery            Azure Resource Manager Module

因此这里的版本有所不同,但是-Tag在6.1.0中确实存在,因为在Powershell ISE中脚本可以工作。而且它必须使用6.1.0,因为它似乎是唯一安装的版本(?)。

此外,控制台应用程序还在两个Visual Studio(笔记本电脑/台式机)中运行相同的配置(至少据我所知)。值得注意的是,它被编译为AnyCPU并在两台计算机上均以32位运行。

1 个答案:

答案 0 :(得分:2)

this,似乎-tag缺少Azure Rm 6.0.0之前的版本。这是由以下原因确定的问题的根本原因:

get-command get-azurermresource -full

解决方法是升级该版本。您可以通过以下操作找到该模块的位置:

get-module azurerm  | select modulebase

ps。另一个解决方法是使用odata查询:

Get-AzureRmResource -ODataQuery "`$filter=tagname eq 'something'"