Enable-CMAlert
Enable-CMAlert
Enables Configuration Manager alerts.
Syntax
Parameter Set: SearchByIdMandatory
Enable-CMAlert -Id <String> [-Confirm] [-WhatIf] [ <CommonParameters>]
Parameter Set: SearchByNameMandatory
Enable-CMAlert -Name <String> [-Confirm] [-WhatIf] [ <CommonParameters>]
Parameter Set: SearchByValueMandatory
Enable-CMAlert -InputObject <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Enable-CMAlert cmdlet enables one or more Microsoft System Center 2012 Configuration Manager alerts.
Parameters
-Id<String>
Specifies an alert identifier. You can obtain the identifier of an alert by using the Get-Alert cmdlet.
Aliases |
none |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-InputObject<IResultObject>
Specifies a CMAlert object. To obtain a CMAlert object, use the Get-CMAlert cmdlet.
Aliases |
none |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-Name<String>
Specifies an alert name. You can obtain the name of an alert by using Get-CMAlert.
Aliases |
none |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-Confirm
Prompts you for confirmation before running the cmdlet.
Required? |
false |
Position? |
named |
Default Value |
false |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Required? |
false |
Position? |
named |
Default Value |
false |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
Examples
Example 1: Enable an alert by using alert ID
This command enables an alert that has the Id 16777223.
PS C:\> Enable-CMAlert -Id "16777223"
Example 2: Enable an alert by using an alert object variable
In this example, the first command gets the alert object that has the ID 16777218 and stores it in the $AlertObj variable.
The second command enables the alert stored in the $AlertObj variable.
PS C:\> $AlertObj = Get-CMAlert -Id "16777218"
PS C:\> Enable-CMAlert -InputObject $AlertObj