PowerShell Logo Small

Send-DtcDiagnosticTransaction



This is the built-in help made by Microsoft for the command 'Send-DtcDiagnosticTransaction', 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

Propagates a transaction to a specified diagnostic Resource Manager.

SYNTAX


Send-DtcDiagnosticTransaction [-Transaction] <DtcDiagnosticTransaction> [[-ComputerName] <String>] [[-Port] <Int32>] [[-PropagationMethod] <DtcTransactionPropagation>
] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Send-DtcDiagnosticTransaction cmdlet propagates a transaction to a specified diagnostic Resource Manager (RM). Use the PropagationMethod parameter to specify the
propagation method.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=317171
Complete-DtcDiagnosticTransaction
New-DtcDiagnosticTransaction
Receive-DtcDiagnosticTransaction
Undo-DtcDiagnosticTransaction

REMARKS

<

Examples


Example 1: Send a DTC diagnostic transaction

PS C:\>$Tx = New-DtcDiagnosticTransaction
PS C:\> Send-DtcDiagnosticTransaction –Transaction $Tx –ComputerName "Host1" –PropagationMethod Push



The first command creates a new DTC diagnostic transaction and assigns it to a variable.

The second command sends the diagnostic transaction to an RM running on the computer named Host1.