PowerShell Logo Small

Set-DtcAdvancedSetting



This is the built-in help made by Microsoft for the command 'Set-DtcAdvancedSetting', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Sets DTC instance specific properties in the registry.

SYNTAX


Set-DtcAdvancedSetting [-AsJob] [-CimSession <CimSession[]>] [-DtcName <String>] [-Subkey <String>] [-ThrottleLimit <Int32>] -Name <String> -Type <String> -Value <String>
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-DtcAdvancedSetting cmdlet sets the Distributed Transaction Coordinator (DTC) instance specific properties in the registry.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=317173
Get-DtcAdvancedSetting

REMARKS

<

Examples


Example 1: Modify a setting for the local DTC

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



This command disables remote procedure call (RPC) security on the local DTC.