Remove-SCSMDCMWorkflow

从 Service Manager 中删除 DCM 工作流。

语法

Remove-SCSMDCMWorkflow
      [-Workflow] <DCMWorkflow[]>
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

说明

Remove-SCSMDCMWorkflow cmdlet 从 Service Manager 中删除 Desired Configuration Management (DCM) 工作流。

示例

示例 1:删除工作流

The first command gets the workflows that match the specified display name by using the Get-SCSMDCMWorkflow cmdlet. The cmdlet displays the results. 
PS C:\>Get-SCSMDCMWorkflow -DisplayName "MyDCM*"
DisplayName   Description           Enabled
-----------   -----------           -------
MyDCMWorkflow This is a description False

The second command passes the results of the **Get-SCSMDCMWorkflow** cmdlet to the current cmdlet by using the pipeline operator. The command removes the workflow. 
PS C:\>Get-SCSMDCMWorkflow -DisplayName "MyDCM*" | Remove-SCSMDCMWorkflow 

The final command repeats the first command. The results show that the workflow has been deleted. 
PS C:\>Get-SCSMDCMWorkflow -DisplayName "MyDCM*"

此示例删除 DCM 工作流。

参数

-Confirm

在运行 cmdlet 之前,提示你进行确认。

类型:System.Management.Automation.SwitchParameter
别名:cf
Position:Named
默认值:False
必需:False
接受管道输入:False
接受通配符:False

-WhatIf

显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。

类型:System.Management.Automation.SwitchParameter
别名:wi
Position:Named
默认值:False
必需:False
接受管道输入:False
接受通配符:False

-Workflow

指定 DCM 工作流的实例。

类型:Microsoft.EnterpriseManagement.ServiceManager.Sdk.Workflows.DCMWorkflow[]
Position:0
默认值:None
必需:True
接受管道输入:True
接受通配符:False

输入

Microsoft.EnterpriseManagement.ServiceManager.Sdk.Workflows.DCMWorkflow

可以通过管道将 Service Manager DCM 工作流传递给 工作流 参数。

输出

None.

此 cmdlet 不生成任何输出。