Remove-SCSMDCMWorkflow

Remove-SCSMDCMWorkflow

Removes a Desired Configuration Management (DCM) workflow from Service Manager.

Syntax

Parameter Set: Default
Remove-SCSMDCMWorkflow [-Workflow] <DCMWorkflow[]> [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Remove-SCSMDCMWorkflow cmdlet removes a DCM workflow from Service Manager.

Parameters

-Workflow<DCMWorkflow[]>

Specifies instances of DCM workflows.

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.DCMWorkflow

    You can pipe a Service Manager DCM workflow to the Workflow parameter of the Remove-SCSMDCMWorkflow 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 --------------------------

These commands remove a DCM workflow. The second command displays what will happen if the workflow is removed, the third command removes the workflow, and the last command, which displays nothing, verifies that the removal was successful.

PS C:\>get-SCSMDCMWorkflow -DisplayName MyDCM*


DisplayName   Description           Enabled

-----------   -----------           -------

MyDCMWorkflow This is a description False


PS C:\>get-SCSMDCMWorkflow -DisplayName MyDCM* |Remove-SCSMDCMWorkflow -whatif

What if: Performing operation "Remove-SCSMDCMWorkflow" on Target "MyDCMWorkflow".


PS C:\>get-SCSMDCMWorkflow -DisplayName MyDCM* |Remove-SCSMDCMWorkflow 

PS C:\>get-SCSMDCMWorkflow

Get-SCSMDCMWorkflow

New-SCSMDCMWorkflow

Update-SCSMDCMWorkflow