Set-DtcAdvancedSetting

Applies To: Windows Server 2012 R2 Preview

Set-DtcAdvancedSetting

Set-DtcAdvancedSetting is used to set the DTC instance specific properties that are stored in the registry.

Syntax

Parameter Set: Default
Set-DtcAdvancedSetting -Name <String> -Type <String> -Value <String> [-DtcName <String> ] [-Subkey <String> ] [ <CommonParameters>]

Detailed Description

Set-DtcAdvancedSetting is used to set the DTC instance specific properties that are stored in the registry.

Parameters

-DtcName<String>

Specifies the DTC host for which to retrieve the DTC instance specific properties.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Name<String>

Specifies the property name.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Subkey<String>

Specifies the sub key name where the property is to be stored.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Type<String>

Specifies the registry type of the property to be stored. Can be SZ or DWORD.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Value<String>

The value of the property to be stored.

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

Disabling RPC security on the Local DTC.

PS C:\> Set-DtcAdvancedSetting -DtcName local -Name AllowOnlySecureRpcCalls -Value 0 -Type DWORD