3

有没有办法在 foreach 循环中捕获和保存坏名?我有以下内容:

$CollectionName = "Import Test"
$PCName = Import-Csv "C:\Powershell\import_test.csv" 
foreach($computer in $PCName) {
Add-CMDeviceCollectionDirectMembershipRule -CollectionName $CollectionName -ResourceID $(Get-   CMDevice -Name $computer.computername).ResourceID
}

我想做的是,如果 csv 中有一个错误的名称,那么不要显示我目前得到的“无法验证参数”错误,只需将失败的名称输出到一个文本文件。

谢谢

4

1 回答 1

9

是的。将语句放入循环中的try..catch块中:

foreach($computer in $PCName) {
  try {
    Add-CMDeviceCollectionDirectMembershipRule ...
  } catch {
    "Bad name: $name" | Out-File 'C:\bad_names.txt' -Append
  }
}

如果错误是非终止错误(即显示错误消息,但未被 捕获),您可以通过添加到命令或通过设置try..catch将其变为终止错误。-ErrorAction Stop$ErrorActionPreference = "Stop"

于 2013-07-22T20:25:42.613 回答