所以我完全被这个困扰。
我有一个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位运行。
答案 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'"