NAME
Undo-DtcDiagnosticTransaction
SYNOPSIS
Invokes the Abort process on the specified transaction.SYNTAX
Undo-DtcDiagnosticTransaction [-Transaction]
[ ] DESCRIPTION
The Undo-DtcDiagnosticTransaction cmdlet invokes the Abort process on the specified transaction.
PARAMETERS
-Transaction
Specifies the DtcDiagnosticTransaction object on which to invoke the Abort process. You can use the pipeline operator to pass this parameter value to the cmdlet. Required? true Position? 1 Default value none Accept pipeline input? True (ByValue) Accept wildcard characters? falseThis cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
OUTPUTS
Example 1: Undo a DTC diagnostic transaction
PS C:\>$Tx = New-DtcDiagnosticTransaction
PS C:\> Undo-DtcDiagnosticTransaction -Transaction $Tx
This command creates a new diagnostic transaction and assigns it to a variable. The second command undoes the transaction.RELATED LINKS
Online Version: http://go.microsoft.com/fwlink/p/?linkid=317188Complete-DtcDiagnosticTransaction
New-DtcDiagnosticTransaction
Receive-DtcDiagnosticTransaction
Send-DtcDiagnosticTransaction