Disable-SCOMNotificationSubscription
禁用通知订阅。
语法
Disable-SCOMNotificationSubscription
[-Subscription] <NotificationSubscription[]>
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Disable-SCOMNotificationSubscription cmdlet 禁用 System Center - Operations Manager 中的通知。
示例
示例 1:禁用所有已启用的通知
PS C:\>Get-SCOMNotificationSubscription | where-object{$_.Enabled} | Disable-SCOMNotificationSubscription
此命令禁用所有已启用的通知。
示例 2:禁用通知订阅者的通知
PS C:\>Get-SCOMNotificationSubscription | where-object{$_.ToRecipients -contains "CONTOSO\SarahJones"} | Disable-SCOMNotificationSubscription
此命令禁用消息的 TO 行包括用户帐户 CONTOSO\SarahJones 的所有通知。
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-PassThru
指示 cmdlet 创建或修改命令可以在管道中使用的对象。 默认情况下,此 cmdlet 不生成任何输出。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Subscription
指定要禁用的订阅数组。
类型: | NotificationSubscription[] |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |