PowerShell Logo Small

Disable-WdacBidTrace



This is the built-in help made by Microsoft for the command 'Disable-WdacBidTrace', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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 Built-in Diagnostics Tracing (BidTrace) for troubleshooting WDAC components.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


For more information about data source names and drivers, see Data Sourceshttp://msdn.microsoft.com/en-us/library/ms711688.aspx and
Drivershttp://msdn.microsoft.com/en-us/library/ms715383.aspx. For more information about data access tracing (Bidtrace), see Troubleshooting
Windows DAC/MDAChttp://msdn.microsoft.com/en-us/library/ms693114(VS.85).aspx.



<

RELATED LINKS

Enable-WdacBidTrace
Get-WdacBidTrace
N:Wdac



REMARKS

<

Examples




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:






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 a particular
instance of "abc.exe" (with Process ID = 1234):






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



This command disables the BidTrace for all applications located inside C:\temp on the native platform:






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



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






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



This command first enables the WDAC BidTrace for the 64-bit application "C:\temp\abc.exe". It also saved the result into a PowerShell variable
that can be reused in Disable-WdacBidTrace: