PowerShell Logo Small

Get-WdacBidTrace



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

Retrieves Built-in Diagnostics Tracing (BidTrace) for troubleshooting WDAC components.

SYNTAX


Get-WdacBidTrace [[-Path] <String>] [-AsJob [<SwitchParameter>]] [-CimSession <CimSession>] [-Platform <String>] [-ProcessId <UInt32>]
[-ThrottleLimit <Int32>] [<CommonParameters>]
Get-WdacBidTrace [-AsJob [<SwitchParameter>]] [-CimSession <CimSession>] [-Platform <String>] [-ThrottleLimit <Int32>] -IncludeAllApplications
[<SwitchParameter>] [<CommonParameters>]
Get-WdacBidTrace [-AsJob [<SwitchParameter>]] [-CimSession <CimSession>] [-Platform <String>] [-ThrottleLimit <Int32>] -Folder <String>
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-WdacBidTrace retrieves a list of BidTrace setting for different applications.


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

Disable-WdacBidTrace
Enable-WdacBidTrace
N:Wdac



REMARKS

<

Examples




C:\PS>Get-WdacBidTrace



Get all BidTrace settings for both 32-bit and 64-bit platform:






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



Gets the BidTrace setting for the application "C:\temp\abc.exe" and the specific settings for all of its process instances on 32-bit platform:






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



Gets the BidTrace setting for the application "C:\temp\abc.exe" with Process ID = 1234 on the 64-bit platform:






C:\PS>Get-WdacBidTrace -Path "C:\*\abc.exe" -Platform 64-bit



Gets the BidTrace setting for the application matching the wildcard pattern "C:\*\abc.exe" on the 64-bit platform:






C:\PS>Get-WdacBidTrace -Folder "C:\temp" -Platform 32-bit



Gets the BidTrace setting for the application located inside "C:\temp" on the 32-bit platform:






C:\PS>Get-WdacBidTrace -Folder "C:\t*mp" -Platform 32-bit



Gets the BidTrace setting for the application located inside a folder matching the wildcard pattern "C:\t*mp" on the 32-bit platform:






C:\PS>Get-WdacBidTrace -IncludeAllApplications -Platform 32-bit



Gets the BidTrace setting (applied to all 32-bit applications) on the computer:






C:\PS>$bidArray = Get-WdacBidTrace



Save the result into a PowerShell variable: