Remove-SCSMSubscription
Updated: January 14, 2013
Applies To: System Center 2012 - Service Manager, System Center 2012 SP1 - Service Manager
Remove-SCSMSubscription
Syntax
Parameter Set: Default Remove-SCSMSubscription [-Subscription] <Subscription[]> [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Remove-SCSMSubscription cmdlet removes a subscription from Service Manager.
Parameters
-Subscription<Subscription[]>
Specifies the object that represents the subscription to be removed.
|
Aliases |
none |
|
Required? |
true |
|
Position? |
1 |
|
Default Value |
none |
|
Accept Pipeline Input? |
true (ByValue) |
|
Accept Wildcard Characters? |
false |
-Confirm
Prompts you for confirmation before executing the command.
|
Required? |
false |
|
Position? |
named |
|
Default Value |
false |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-WhatIf
Describes what would happen if you executed the command without actually executing the command.
|
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.
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
-
Microsoft.EnterpriseManagement.ServiceManager.Sdk.Notifications.Subscriptions.Subscription
You can pipe a subscription to the Subscription parameter of the Remove-SCSMSubscription cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
-
None.
This cmdlet does not generate any output.
Examples
-------------------------- EXAMPLE 1 --------------------------
This script displays and then removes all deployment processes in which the Description property matches the string 3.
PS C:\>Get-SCSMSubscription -displayname custom* Enabled DisplayName Description ManagementPackName ------- ----------- ----------- ------------------ False CustomSubscription A subscription Microsoft.EnterpriseManagement.ServiceManager.Default PS C:\>Get-SCSMSubscription -displayname custom* | Remove-SCSMSubscription
