我想只过滤某些以MS开头但我收到错误的应用程序。提前致谢。
$Applist = Get-BrokerApplication -AdminAddress DDC -filter "MS"
foreach ($app in $Applist)
{
Add-XAApplicationAccount $app -accounts "domain\users
}
答案 0 :(得分:2)
我对这些cmdlet here的过滤器语法进行了阅读。它与常规PowerShell cmdlet处理过滤器的方式类似。网站上的一个例子
Get-<Noun> -Filter 'Name -like "High*" -or (Priority -eq 1 -and Severity -ge 2)'
我猜你得到的错误是关于过滤器输入格式不正确的。您需要使用与我上面显示的类似的语法。所以猜测就是
Get-BrokerApplication -AdminAddress DDC -filter 'Name -like "MS*"'