Set-WFServiceConfiguration

Updated: August 30, 2012

Set-WFServiceConfiguration

This cmdlet sets a Workflow service configuration value for the specified configuration name.

Syntax

Parameter Set: Default
Set-WFServiceConfiguration -Name <String> -ServiceUri <Uri> -Value <String> [-Credential <ICredentials> ] [ <CommonParameters>]

Detailed Description

Run Set-WFServiceConfiguration to set a Workflow service configuration value for the specified configuration name.

Parameters

-Credential<ICredentials>

Specifies the credential to use when connecting to the Workflow service. If not specified, then the currently logged in users Windows credentials are used to connect to the service.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Name<String>

The service configuration name.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-ServiceUri<Uri>

The URI of the Workflow service.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Value<String>

The service configuration value.

Aliases

none

Required?

true

Position?

named

Default Value

none

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.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

Example 1

Set a Workflow service configuration value for the specified configuration name.

PS C:\> Set-WFServiceConfiguration -ServiceUri https://server/scope -Name WorkflowServiceReadOnly -Value false

 

 

PS C:\>