錯誤

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)