Remove-SCSMDCMWorkflow
Entfernt einen DCM-Workflow aus Service Manager.
Syntax
Remove-SCSMDCMWorkflow
[-Workflow] <DCMWorkflow[]>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Beschreibung
Das cmdlet Remove-SCSMDCMWorkflow cmdlet entfernt einen Desired Configuration Management (DCM)-Workflow aus Service Manager.
Beispiele
Beispiel 1: Entfernen eines Workflows
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*"
In diesem Beispiel wird ein DCM-Workflow entfernt.
Parameter
-Confirm
Fordert Sie vor dem Ausführen des Cmdlets zur Bestätigung auf.
Typ: | System.Management.Automation.SwitchParameter |
Aliase: | cf |
Position: | Named |
Standardwert: | False |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-WhatIf
Zeigt, was passiert, wenn das Cmdlet ausgeführt wird. Das Cmdlet wird nicht ausgeführt.
Typ: | System.Management.Automation.SwitchParameter |
Aliase: | wi |
Position: | Named |
Standardwert: | False |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-Workflow
Gibt Instanzen von DCM-Workflows an.
Typ: | Microsoft.EnterpriseManagement.ServiceManager.Sdk.Workflows.DCMWorkflow[] |
Position: | 0 |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | True |
Platzhalterzeichen akzeptieren: | False |
Eingaben
Microsoft.EnterpriseManagement.ServiceManager.Sdk.Workflows.DCMWorkflow
Sie können einen Service Manager DCM-Workflow an den parameter Workflow übergeben.
Ausgaben
None.
Dieses Cmdlet generiert keine Ausgabe.