Suspend-CMAlert
暂停监视警报。
语法
Suspend-CMAlert
[-Comment <String>]
-InputObject <IResultObject>
[-PassThru]
-SkipUntil <DateTime>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Suspend-CMAlert
[-Comment <String>]
-Id <String>
[-PassThru]
-SkipUntil <DateTime>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Suspend-CMAlert
[-Comment <String>]
-Name <String>
[-PassThru]
-SkipUntil <DateTime>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Suspend-CMAlert cmdlet 在指定日期之前暂停监视警报。 此时,Configuration Manager 会更新警报的状态。 仅当启用警报时,才能暂停警报。 如果未指定 SkipUntil 参数,警报将无限期挂起。
注意
从 Configuration Manager 站点驱动器运行 Configuration Manager cmdlet,例如 PS XYZ:\>
。 有关详细信息,请参阅 入门。
示例
示例 1:使用 ID 挂起警报
PS XYZ:\> Suspend-CMAlert -Id "16777219" -Comments "Postponing alert evaluation" -SkipUntil "Wednesday, August 20, 2012 4:03:17 PM"
此命令将暂停 ID 16777219的警报,直到 SkipUntil 指定的时间,并向警报添加注释。
示例 2:使用警报对象变量暂停警报
PS XYZ:\> $AlertObj = Get-CMAlert -Id "16777221"
PS XYZ:\> Suspend-CMAlert -InputObject $AlertObj -Comments "Postponing alert evaluation" -SkipUntil "4/8/2012 8:04:39 PM"
第一个命令获取 ID 为16777221的警报对象,然后将对象存储在 $AlertObj 变量中。
第二个命令暂停存储在 $AlertObj 中的警报,直到 SkipUntil 指定的时间,并向警报添加注释。
参数
-Comment
指定要添加到警报的注释。 可以使用注释来记录有关暂停警报的说明。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Confirm
提示你在运行 cmdlet 之前进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DisableWildcardHandling
此参数将通配符视为文本字符值。 不能将其与 ForceWildcardHandling 组合使用。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ForceWildcardHandling
此参数处理通配符,并可能导致意外行为, (不建议) 。 不能将其与 DisableWildcardHandling 组合使用。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Id
指定警报 ID。 可以使用 Get-CMAlert cmdlet 获取警报的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-InputObject
指定 CMAlert 对象。 若要获取 CMAlert 对象,请使用 Get-CMAlert cmdlet。
类型: | IResultObject |
别名: | Alert |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Name
指定警报的名称。 可以使用 Get-CMAlert 获取警报的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-PassThru
添加此参数可返回一个对象,该对象表示正在使用的项。 默认情况下,此 cmdlet 可能不会生成任何输出。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-SkipUntil
指定开始评估警报的特定日期和时间。
输入可转换为时间的 DateTime 对象或字符串,例如 2012 年 4 月 19 日 15:00、2013 年 12 月 31 日晚上 9:00 或凌晨 3 点。
若要获取 DateTime 对象,请使用 Get-Date cmdlet。
有关详细信息,请键入 Get-Help Get-Date
。
如果未指定 DateTime 对象的元素(例如秒),则不会更改作业触发器的该元素。 如果原始作业触发器不包含 DateTime 对象,并且你省略了元素,则会使用当前日期和时间中的相应元素创建作业触发器。
DateTime 对象和转换为 DateTime 对象的字符串会自动调整为与控制面板中的 “区域和语言 ”中为本地计算机选择的日期和时间格式兼容。
类型: | DateTime |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示在 cmdlet 运行时发生的情况。 cmdlet 不会运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
Microsoft.ConfigurationManagement.ManagementProvider.IResultObject
输出
System.Object