PowerShell Logo Small

Disable-WdacBidTrace



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

Disables BidTrace for Windows DAC.

SYNTAX


Disable-WdacBidTrace [-InputObject] <CimInstance[]> [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Disable-WdacBidTrace [-Path] <String> [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-Platform <String>] [-ProcessId <UInt32>] [-ThrottleLimit <Int32>] [-Confirm]
[-WhatIf] [<CommonParameters>]
Disable-WdacBidTrace [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-Platform <String>] [-ThrottleLimit <Int32>] -Folder <String> [-Confirm] [-WhatIf]
[<CommonParameters>]
Disable-WdacBidTrace [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-Platform <String>] [-ThrottleLimit <Int32>] -IncludeAllApplications [-Confirm] [-WhatIf]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Disable-WdacBidTrace cmdlet disables Built-in Diagnostics Tracing (BidTrace) for troubleshooting Windows Data Access Components (Windows DAC).


For more information about data access tracing, see Data Access Tracing (Windows 8) (http://msdn.microsoft.com/en-us/library/hh829624(VS.85).aspx) on the Microsoft Developer
Network.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287602
Enable-WdacBidTrace
Get-WdacBidTrace
N:Wdac



REMARKS

<

Examples


Example 1: Disable BidTrace for a 32-bit application

PS C:\> Disable-WdacBidTrace -Path "C:\temp\abc.exe" -Platform "32-bit"



This command disables the BidTrace for the application C:\temp\abc.exe on the 32-bit platform.




Example 2: Disable BidTrace for a 32-bit application by using a Process ID

PS C:\> Disable-WdacBidTrace -Path "C:\temp\abc.exe" -ProcessId 1234 -Platform "32-bit"



This command disables the BidTrace for the application C:\temp\abc.exe on the 32-bit platform, and disables BidTrace for the particular instance of abc.exe that has the
Process ID 1234.




Example 3: Disable BidTrace for all native applications in a folder

PS C:\> Disable-WdacBidTrace -Folder "C:\temp"



This command disables the BidTrace for all applications in C:\temp on the native platform.




Example 4: Disable BidTrace for all 64-bit applications

PS C:\> Disable-WdacBidTrace -IncludeAllApplications -Platform "64-bit"



This command disables the BidTrace for all 64-bit applications.




Example 5: Enable and disable BidTrace for a 64-bit application

PS C:\> $bidSetting = Enable-WdacBidTrace -Path "C:\temp\abc.exe" -Platform "64-bit" -PassThru
PS C:\> Disable-WdacBidTrace -InputObject $bidSetting



The first command enables the BidTrace for the 64-bit application C:\temp\abc.exe, and then stores the result in the $bidSetting variable. After you run the first command,
you can use abc.exe. The second command disables BidTrace for the application stored in $bidSetting.