Trace-Command - PowerShell command help and examples

Configures and starts a trace of the specified expression or command. (Trace-Command)


NAME
Trace-Command
SYNOPSIS
Configures and starts a trace of the specified expression or command.
SYNTAX
Trace-Command [-Command] <string> [-ArgumentList <Object[]>] [-Name] <string[]> [[-Option] {None | Constructor | Dispose | Finalizer | Method | Property | Delegates | Events | Exception | Lock | Error | Errors | Warning | Verbose | WriteLine | Data | Scope | ExecutionFlow | Assert | All}] [-Debugger] [-FilePath <string>] [-Force] [-InputObject <psobject>] [-ListenerOption {None | LogicalOperationStack | DateTime | Timestamp | ProcessId | ThreadId | Callstack}] [-PSHost] [<CommonParameters>] Trace-Command [-Expression] <scriptblock> [-Name] <string[]> [[-Option] {None | Constructor | Dispose | Finalizer | Method | Property | Delegates | Events | Exception | Lock | Error | Errors | Warning | Verbose | WriteLine | Data | Scope | ExecutionFlow | Assert | All}] [-Debugger] [-FilePath <string>] [-Force] [-InputObject <psobject>] [-ListenerOption {None | LogicalOperationStack | DateTime | Timestamp | ProcessId | ThreadId | Callstack}] [-PSHost] [<CommonParameters>]
DESCRIPTION
The Trace-Command cmdlet configures and starts a trace of the specified expression or command. It works like Set-TraceSource, except that it applies only to the specified command.
PARAMETERS
-ArgumentList <Object[]> Specifies the parameters and parameter values for the command being traced. The alias for ArgumentList is Args. This feature is especially useful for debugging dynamic parameters. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Command <string> Specifies a command that is being processed during the trace. Required? true Position? 2 Default value Accept pipeline input? false Accept wildcard characters? false -Debugger [<SwitchParameter>] Sends the trace output to the debugger. You can view the output in any user-mode or kernel mode debugger or in Visual Studio. This parameter also selects the default trace listener. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Expression <scriptblock> Specifies the expression that is being processed during the trace. Enclose the expression in curly braces ({}). Required? true Position? 2 Default value Accept pipeline input? false Accept wildcard characters? false -FilePath <string> Sends the trace output to the specified file. This parameter also selects the file trace listener. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Force [<SwitchParameter>] Allows the cmdlet to append trace information to a read-only file. Used with the FilePath parameter. Even using the Force parameter, the cmdlet cannot override security restrictions. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -InputObject <psobject> Provides input to the expression that is being processed during the trace. You can enter a variable that represents the input that the expression accepts, or pass an object through the pipeline. Required? false Position? named Default value Accept pipeline input? true (ByValue) Accept wildcard characters? false -ListenerOption <TraceOptions> Adds optional data to the prefix of each trace message in the output. The valid values are None, LogicalOperationStack, DateTime, Timestamp, ProcessId, ThreadId, and Callstack. "None" is the default. To specify multiple options, separate them with commas, but with no spaces, and enclose them in quotation marks, such as "ProcessID,ThreadID". Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Name <string[]> Determines which Windows PowerShell components are traced. Enter the name of the trace source of each component. Wildcards are permitted. To find the trace sources on your computer, type "Get-TraceSource". Required? true Position? 1 Default value Accept pipeline input? false Accept wildcard characters? false -Option <PSTraceSourceOptions> Determines the type of events that are traced. The valid values are None, Constructor, Dispose, Finalizer, Method, Property, Delegates, Events, Exception, Lock, Error, Errors, Warning, Verbose, WriteLine, Data, Scope, ExecutionFlow, Assert, and All. "All" is the default. The following values are combinations of other values: -- ExecutionFlow: (Constructor, Dispose, Finalizer, Method, Delegates, Events, and Scope) -- Data: (Constructor, Dispose, Finalizer, Property, Verbose, and WriteLine) -- Errors: (Error and Exception). To specify multiple options, separate them with commas, but with no spaces, and enclose them in quotation marks, such as "Constructor,Dispose". Required? false Position? 3 Default value Accept pipeline input? false Accept wildcard characters? false -PSHost [<SwitchParameter>] Sends the trace output to the Windows PowerShell host. This parameter also selects the PSHost trace listener. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false <CommonParameters> This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type, "get-help about_commonparameters".
INPUTS
System.Management.Automation.PSObject You can pipe objects that represent input to the expression to Trace-Command.
OUTPUTS
System.Management.Automation.PSObject Returns the command trace in the debug stream.
NOTES
Tracing is a method that developers use to debug and refine programs. When tracing, the program generates detailed messages about each step in its internal processing. The Windows PowerShell tracing cmdlets are designed to help Windows PowerShell developers, but they are available to all users. They let you monitor nearly every aspect of the functionality of the shell. To find the Windows PowerShell components that are enabled for tracing, type "Get-Help Get-TraceSource." A "trace source" is the part of each Windows PowerShell component that manages tracing and generates trace messages for the component. To trace a component, you identify its trace source. A "trace listener" receives the output of the trace and displays it to the user. You can elect to send the trace data to a user-mode or kernel-mode debugger, to the host or console, to a file, or to a custom listener derived from the System.Diagnostics.TraceListener class. When you use the Command parameter set, Windows PowerShell processes the command just as it would be processed in a pipeline. For example, command discovery is not repeated for each incoming object. The names of the Name, Expression, Option, and Command parameters are optional. If you omit the parameter names, the unnamed parameter values must appear in this order: Name, Expression, Option or Name, Command,-Option . If you include the parameter names, the parameters can appear in any order.

Examples

EXAMPLE 1
C:\PS>trace-command -name metadata,parameterbinding,cmdlet -expression {get-process notepad} -pshost
Description
----------- This command starts a trace of metadata processing, parameter binding, and cmdlet creation and destruction of the "get-process notepad" expression. It uses the Name parameter to specify the trace sources, the Expression parameter to specify the command, and the PSHost parameter to send the output to the console. Because it does not specify any tracing options or listener options, the command uses the defaults, "All" for the tracing options, and "None" for the listener options.
EXAMPLE 2
C:\PS>trace-command -name commandprocessor,pipelineprocessor -command get-alias -argumentlist "ghy" -option executionflow -listenerOption "timestamp,callstack" -filepath c:\test\debug.txt
Description
----------- This command starts a trace of the command processor and pipeline processor while processing the "get-alias cd" command. It uses the Name parameter to specify the trace sources, the Command parameter to specify the command, the ArgumentList parameter to specify the parameters of the Get-Alias command, the Option parameter to specify tracing options, and the ListenerOption parameter to specify the fields in the trace message prefix. The FilePath parameter sends the output to the C:\Test\Debug.txt file.
EXAMPLE 3
C:\PS>$a = "i*" C:\PS> trace-command parameterbinding {get-alias $input} -pshost -inputobject $a
Description
----------- These commands trace the actions of the ParameterBinding operations of Windows PowerShell while it processes a Get-Alias expression that takes input from the pipeline. In Trace-Command, the InputObject parameter passes an object to the expression that is being processed during the trace. The first command stores the string "i*" in the $a variable. The second command uses the Trace-Command cmdlet with the ParameterBinding trace source. The PSHost parameter sends the output to the console. The expression being processed is "get-alias $input", where the $input variable is associated with the InputObject parameter. The InputObject parameter passes the variable $a to the expression. In effect, the command being processed during the trace is "get-alias -inputobject $a" or "$a | get-alias". RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=113419 Get-TraceSource Set-TraceSource C:\Windows>powershell get-help Start-Transcript -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Configures and starts a trace of the specified expression or command.

HTTP: ... PS_Windows/en/Trace-Command.htm
0.046
15915

Activate and see more media columns in the Quad Explorer!

GetWindowText and Copy Text To Clipboard

Sometimes you need a countdown to count down the time under Windows!

PowerShell commands directly in the Explorer Address-Bar Start in current directory!

The Photo Resizer for all Microsoft Windows Desktop and Server OS!

AutoLoginOK enables automatic login on Windows!



(0)