PowerShell Logo Small

Get-WdacBidTrace



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

Gets BidTrace settings.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-WdacBidTrace cmdlet gets a list of Built-in Diagnostics Tracing (BidTrace) settings for different applications.


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=287608
Disable-WdacBidTrace
Enable-WdacBidTrace
N:Wdac



REMARKS

<

Examples


Example 1: Get all BidTrace settings

C:\PS>Get-WdacBidTrace



This command gets all BidTrace settings for both 32-bit and 64-bit platforms.




Example 2: Get the BidTrace setting for an application on a platform

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



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




Example 3: Get the BidTrace setting for an application by using a Process ID

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



This command gets the BidTrace setting for the application C:\temp\abc.exe that has the Process ID 1234 on the 64-bit platform.




Example 4: Get the BidTrace setting for an application by using a wildcard character

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



This command gets the BidTrace setting for the specified application on the 64-bit platform. The Path parameter uses a wildcard character.




Example 5: Get the BidTrace setting for application in a specified folder

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



This command gets the BidTrace setting for the application located inside C:\temp on the 32-bit platform.




Example 6: Get the BidTrace setting for application in a folder that includes a wildcard character

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



This command gets the BidTrace setting for the application in the specified location on the 32-bit platform. The Path parameter uses a wildcard character.




Example 7: Get the BidTrace settings for all 32-bit applications

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



This command gets the BidTrace settings for all 32-bit applications on the computer.




Example 8: Get BidTrace settings for both platforms

C:\PS>$bidArray = Get-WdacBidTrace



This command gets all BidTrace settings for both 32-bit and 64-bit platforms, and then store the results in the $bidArray variable.