具有Shutdown命令错误处理的Powershell

时间:2013-08-07 15:07:10

标签: powershell shutdown

我的关机脚本使用Shutdown -R命令对机器进行大规模重启。如果Shutdown -R抛出一个错误,如“RPC服务不可用,或访问被拒绝”,我无法抓住它或只是不知道如何。有人可以帮忙吗?我不想在powershell中使用Restart-Computer,因为你无法延迟重启并且无法添加注释。

foreach($PC in $PClist){
ping -n 2 $PC >$null
if($lastexitcode -eq 0){
  write-host "Rebooting $PC..." -foregroundcolor black -backgroundcolor green
  shutdown /r /f /m \\$PC /d p:1:1 /t 300 /c "$reboot_reason"
  LogWrite "$env:username,$PC,Reboot Sent,$datetime"
} else {
  write-host "$PC is UNAVAILABLE" -foregroundcolor black -backgroundcolor red
  LogWrite "$env:username,$PC,Unavailable/Offline,$datetime"
}
}

1 个答案:

答案 0 :(得分:2)

如果在$PC上启用了PowerShell远程处理,可能会这样:

Invoke-Command -Computer $PC { shutdown /r /f /d p:1:1 /t 300 /c $ARGV[0] } `
    -ArgumentList $reboot_reason

-Computer选项采用一系列名称/ IP。

如果您想坚持使用您的方法并且只是从shutdown.exe捕获错误,请在命令后评估$LastExitCode

shutdown /r /f /m \\$PC /d p:1:1 /t 300 /c "$reboot_reason" 2>$null
if ($LastExitCode -ne 0) {
  Write-Host "Cannot reboot $PC ($LastExitCode)" -ForegroundColor black `
      -BackgroundColor red
} else {
  LogWrite "$env:username,$PC,Reboot Sent,$datetime"
}

2>$null会抑制实际的错误消息,$LastExitCode上的检查会触发成功/失败操作。