Update-SCSMDCMWorkflow
Updated: January 14, 2013
Applies To: System Center 2012 - Service Manager, System Center 2012 SP1 - Service Manager
Update-SCSMDCMWorkflow
Syntax
Parameter Set: Default Update-SCSMDCMWorkflow [-Workflow] <DCMWorkflow[]> [-PassThru] [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Update-SCSMDCMWorkflow cmdlet updates properties of a DCM workflow.
Parameters
-PassThru
Specifies the output object that represents the workflow to update. This output object can be passed to other cmdlets.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-Workflow<DCMWorkflow[]>
Specifies the instance of a DCM workflow to update.
|
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.Workflows.DCMWorkflow
You can pipe a DCM workflow to the Workflow parameter of the Update-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 --------------------------
The commands in this example update the properties of a DCM workflow.
PS C:\>Get-SCSMDCMWorkflow
DisplayName Description Enabled
----------- ----------- -------
MyDCMWorkflow This is a description False
PS C:\>$wf = Get-SCSMDCMWorkflow
PS C:\>$wf|format-list
DisplayName : MyDCMWorkflow
Description : This is a description
ConfigurationBaseLine : {}
Enabled : False
ManagementPack : [ServiceManager.IncidentManagement.Configuration]
Template : DefaultIncidentTemplate
EnableNotification : True
Notification : {System.Collections.Hashtable, System.Collections.Hashtable}
PS C:\>$wf.notification
Name Value
---- -----
Template AssignedToUserNotificationTemplate
User Assigned To User
Template HighPriorityIncidentTemplate
User Created By User
PS C:\>$notification = $wf.notification[0]
PS C:\>$notification
Name Value
---- -----
Template AssignedToUserNotificationTemplate
User Assigned To User
PS C:\>$wf.notification = $notification
PS C:\>$wf.Description = "This is a new description"
PS C:\>$wf|format-list
DisplayName : MyDCMWorkflow
Description : This is a new description
ConfigurationBaseLine : {}
Enabled : False
ManagementPack : [ServiceManager.IncidentManagement.Configuration]
Template : DefaultIncidentTemplate
EnableNotification : True
Notification : {System.Collections.Hashtable}
PS C:\>$wf|Update-SCSMDCMWorkflow
PS C:\>Get-SCSMDCMWorkflow|fl
DisplayName : MyDCMWorkflow
Description : This is a new description
ConfigurationBaseLine : {}
Enabled : False
ManagementPack : [ServiceManager.IncidentManagement.Configuration]
Template : DefaultIncidentTemplate
EnableNotification : True
Notification : {System.Collections.Hashtable}
