错误

Get-Process -Name doesnotexist
Write-Host -Object ('The last error that occurred was: {0}' -f $error[0].Exception.Message)

包含表示最新错误的错误对象数组。最新的错误是数组中的第一个错误对象($ Error [0])。

要防止将错误添加到$ Error 数组,请使用 ErrorAction 通用参数,其值为 Ignore。有关详细信息,请参阅 about_CommonParameters( http://go.microsoft.com/fwlink/?LinkID=113216)