Remove-SCSMWorkflow
Remove-SCSMWorkflow
Removes a workflow from Service Manager.
Syntax
Parameter Set: Default
Remove-SCSMWorkflow [-Workflow] <Workflow[]> [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Remove-SCSMWorkflow cmdlet removes a workflow from Service Manager.
Parameters
-Workflow<Workflow[]>
Specifies an object that represents the workflow to remove.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
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.
Microsoft.EnterpriseManagement.ServiceManager.Sdk.Workflows.Workflow
You can pipe a workflow to the Workflow parameter.
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: Remove a workflow
This command gets the workflow named Incident02 by using the Get-SCSMWorkflow cmdlet. The command passes that object to the current cmdlet by using the pipeline operator. That cmdlet deletes that workflow.
PS C:\>Get-SCSMWorkflow -Name "Incident02" | Remove-SCSMWorkflow