PowerShell Logo Small

Join-DtcDiagnosticResourceManager



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

Enlists a diagnostic Resource Manager for a transaction object.

SYNTAX


Join-DtcDiagnosticResourceManager [-Transaction] <DtcDiagnosticTransaction> [[-ComputerName] <String>] [[-Port] <Int32>] [-Volatile] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Join-DtcDiagnosticResourceManager cmdlet enlists a diagnostic Resource Manager (RM) for a specified transaction object. The transaction first needs to be sent to
the RM.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=317166
Start-DtcDiagnosticResourceManager
Stop-DtcDiagnosticResourceManager
New-DtcDiagnosticTransaction

REMARKS

<

Examples


Example 1: Enlist a new diagnostic transaction

PS C:\>$Transaction = New-DtcDiagnosticTransaction
PS C:\> Join-DtcDiagnosticResourceManager -Transaction $Transaction



The first command creates a transaction by using the New-DtcDiagnosticTransaction cmdlet, and then stores that transaction in the $Transaction variable.

The second command enlists the transaction stored in $Transaction to a diagnostic resource manager.