Remove-Event
從事件佇列中刪除事件。
語法
Remove-Event
[-SourceIdentifier] <String>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Remove-Event
[-EventIdentifier] <Int32>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Remove-Event
Cmdlet 會從目前會話中的事件佇列中刪除事件。
此 Cmdlet 只會刪除佇列中目前的事件。 若要取消事件註冊或取消訂閱,請使用 Unregister-Event
Cmdlet。
範例
範例 1:依來源標識碼移除事件
PS C:\> Remove-Event -SourceIdentifier "ProcessStarted"
此命令會刪除事件,其中包含從事件佇列啟動之進程的來源標識碼。
範例 2:依事件標識碼移除事件
PS C:\> Remove-Event -EventIdentifier 30
此命令會從事件佇列中刪除事件標識碼為 30 的事件。
範例 3:移除所有事件
PS C:\> Get-Event | Remove-Event
此命令會從事件佇列中刪除所有事件。
參數
-Confirm
在執行 Cmdlet 之前,提示您進行確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-EventIdentifier
指定 Cmdlet 刪除的事件識別碼。 每個命令都需要 EventIdentifier 或 SourceIdentifier 參數。
類型: | Int32 |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-SourceIdentifier
指定此 Cmdlet 從中刪除事件的來源識別碼。 不允許通配符。 每個命令都需要 EventIdentifier 或 SourceIdentifier 參數。
類型: | String |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-WhatIf
顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
您可以使用管線將事件從 Get-Event
傳送至此 Cmdlet。
輸出
None
此 Cmdlet 不會傳回任何輸出。
備註
Linux 或macOS平台上沒有可用的事件來源。
事件、事件訂閱和事件佇列只存在於目前的會話中。 如果您關閉目前的會話,則會捨棄事件佇列,並取消事件訂閱。