PowerShell Logo Small

Set-DtcNetworkSetting



This is the built-in help made by Microsoft for the command 'Set-DtcNetworkSetting', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' 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

Modifies DTC network and security configuration for a DTC instance.

SYNTAX


Set-DtcNetworkSetting [-AsJob] [-CimSession <CimSession[]>] [-DtcName <String>] [-ThrottleLimit <Int32>] -DisableNetworkAccess [-Confirm] [-WhatIf] [<CommonParameters
>]
Set-DtcNetworkSetting [-AsJob] [-AuthenticationLevel <String>] [-CimSession <CimSession[]>] [-DtcName <String>] [-InboundTransactionsEnabled <Boolean>] [-LUTransactio
nsEnabled <Boolean>] [-OutboundTransactionsEnabled <Boolean>] [-RemoteAdministrationAccessEnabled <Boolean>] [-RemoteClientAccessEnabled <Boolean>] [-ThrottleLimit <I
nt32>] [-XATransactionsEnabled <Boolean>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-DtcNetworkSetting cmdlet modifies the Distributed Transaction Coordinator (DTC) network and security configuration for the DTC instance specified by the DtcNa
me parameter. This cmdlet also restarts the DTC instance.



<

RELATED LINKS

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

REMARKS

<

Examples


Example 1: Modify network and security settings

PS C:\> Set-DtcNetworkSetting -DtcName "Local" -AuthenticationLevel "Incoming" -InboundTransactionsEnabled $False
PS C:\> Get-DtcNetworkSetting -DtcName "Local"
__GENUS : 2
__CLASS : DtcNetworkSettings
__SUPERCLASS :
__DYNASTY : DtcNetworkSettings
__RELPATH :
__PROPERTY_COUNT : 7
__DERIVATION : {}
__SERVER :
__NAMESPACE :
__PATH :
AuthenticationLevel : Mutual
InboundTransactionsEnabled : True
LUTransactionsEnabled : True
OutboundTransactionsEnabled : True
RemoteAdministrationAccessEnabled : True
RemoteClientAccessEnabled : True
XATransactionsEnabled : True



The first command modifies the DTC network and security settings for the local DTC instance. The second command verifies the changes.