Write-Error
將物件寫入錯誤數據流。
語法
Write-Error
[-Message] <String>
[-Category <ErrorCategory>]
[-ErrorId <String>]
[-TargetObject <Object>]
[-RecommendedAction <String>]
[-CategoryActivity <String>]
[-CategoryReason <String>]
[-CategoryTargetName <String>]
[-CategoryTargetType <String>]
[<CommonParameters>]
Write-Error
-Exception <Exception>
[-Message <String>]
[-Category <ErrorCategory>]
[-ErrorId <String>]
[-TargetObject <Object>]
[-RecommendedAction <String>]
[-CategoryActivity <String>]
[-CategoryReason <String>]
[-CategoryTargetName <String>]
[-CategoryTargetType <String>]
[<CommonParameters>]
Write-Error
-ErrorRecord <ErrorRecord>
[-RecommendedAction <String>]
[-CategoryActivity <String>]
[-CategoryReason <String>]
[-CategoryTargetName <String>]
[-CategoryTargetType <String>]
[<CommonParameters>]
Description
Write-Error
Cmdlet 會宣告非終止錯誤。 根據預設,錯誤數據流會將錯誤傳送至要顯示的主機程式,以及輸出。
若要寫入非終止錯誤,請輸入錯誤訊息字串、ErrorRecord 物件,或 Exception 物件。 使用 Write-Error
的其他參數填入錯誤記錄。
非終止錯誤會將錯誤寫入錯誤數據流,但不會停止命令處理。 如果在輸入專案集合中的一個專案上宣告非終止錯誤,命令會繼續處理集合中的其他專案。
若要宣告終止錯誤,請使用 Throw
關鍵詞。
如需詳細資訊,請參閱 about_Throw。
範例
範例 1:撰寫 RegistryKey 物件的錯誤
Get-ChildItem | ForEach-Object {
if ($_.GetType().ToString() -eq "Microsoft.Win32.RegistryKey")
{
Write-Error "Invalid object" -ErrorId B1 -TargetObject $_
}
else
{
$_
}
}
當 Get-ChildItem
Cmdlet 傳回 Microsoft.Win32.RegistryKey 物件時,此命令會宣告非終止錯誤,例如 HKLM: 或 HKCU: PowerShell 登錄提供者的磁碟驅動器中的物件。
範例 2:將錯誤訊息寫入主控台
Write-Error "Access denied."
此命令會宣告非終止錯誤,並寫入「拒絕存取」錯誤。 此命令會使用 Message 參數來指定訊息,但省略選擇性 Message 參數名稱。
範例 3:將錯誤寫入主控台並指定類別
Write-Error -Message "Error: Too many input values." -Category InvalidArgument
此命令會宣告非終止錯誤,並指定錯誤類別。
範例 4:使用 Exception 物件寫入錯誤
$E = [System.Exception]@{Source="Get-ParameterNames.ps1";HelpLink="https://go.microsoft.com/fwlink/?LinkID=113425"}
Write-Error -Exception $E -Message "Files not found. The $Files location does not contain any XML files."
此命令會使用 Exception 物件來宣告非終止錯誤。
第一個命令會使用哈希表來建立 System.Exception 物件。 它會將例外狀況物件儲存在 $E
變數中。 您可以使用哈希表來建立具有 Null 建構函式之型別的任何物件。
第二個命令會使用 Write-Error
Cmdlet 來宣告非終止錯誤。
Exception 參數的值是 $E
變數中的 Exception 物件。
參數
-Category
指定錯誤的類別。 預設值 NotSpecified。 此參數可接受的值為:
- NotSpecified
- OpenError
- CloseError
- DeviceError
- DeadlockDetected
- InvalidArgument
- InvalidData
- InvalidOperation
- InvalidResult
- InvalidType
- MetadataError
- NotImplemented
- NotInstalled
- ObjectNotFound
- OperationStopped
- OperationTimeout
- SyntaxError
- ParserError
- PermissionDenied
- ResourceBusy
- ResourceExists
- ResourceUnavailable
- ReadError
- WriteError
- FromStdErr
- SecurityError
- ProtocolError
- ConnectionError
- AuthenticationError
- LimitsExceeded
- QuotaExceeded
- NotEnabled
如需錯誤類別的資訊,請參閱 ErrorCategory 列舉。
類型: | ErrorCategory |
接受的值: | NotSpecified, OpenError, CloseError, DeviceError, DeadlockDetected, InvalidArgument, InvalidData, InvalidOperation, InvalidResult, InvalidType, MetadataError, NotImplemented, NotInstalled, ObjectNotFound, OperationStopped, OperationTimeout, SyntaxError, ParserError, PermissionDenied, ResourceBusy, ResourceExists, ResourceUnavailable, ReadError, WriteError, FromStdErr, SecurityError, ProtocolError, ConnectionError, AuthenticationError, LimitsExceeded, QuotaExceeded, NotEnabled |
Position: | Named |
預設值: | NotSpecified |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-CategoryActivity
指定造成錯誤的動作。
類型: | String |
別名: | Activity |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-CategoryReason
指定活動造成錯誤的方式或原因。
類型: | String |
別名: | Reason |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-CategoryTargetName
指定發生錯誤時正在處理的物件名稱。
類型: | String |
別名: | TargetName |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-CategoryTargetType
指定發生錯誤時正在處理的物件類型。
類型: | String |
別名: | TargetType |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ErrorId
指定要識別錯誤的識別元字串。 字串應該對錯誤而言是唯一的。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ErrorRecord
指定代表錯誤的錯誤記錄物件。 使用物件的屬性來描述錯誤。
若要建立錯誤記錄物件,請使用 New-Object
Cmdlet,或從 $Error
自動變數中的陣列取得錯誤記錄物件。
類型: | ErrorRecord |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Exception
指定代表錯誤的例外狀況物件。 使用物件的屬性來描述錯誤。
若要建立例外狀況物件,請使用哈希表或使用 New-Object
Cmdlet。
類型: | Exception |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Message
指定錯誤的訊息文字。 如果文字包含空格或特殊字元,請以引號括住它。 您也可以使用管線將訊息字串傳送至 Write-Error
。
類型: | String |
別名: | Msg |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-RecommendedAction
指定使用者應採取的動作來解決或防止錯誤。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-TargetObject
指定發生錯誤時正在處理的物件。 輸入物件、包含物件的變數,或取得 物件的命令。
類型: | Object |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
您可以使用管線將包含錯誤訊息的字串傳送至 Write-Error
。
輸出
Error object
Write-Error
只會寫入錯誤數據流。 它不會傳回任何物件。