Compartir a través de


Get-TraceSource

Gets PowerShell components that are instrumented for tracing.

Sintaxis

Default (Es el valor predeterminado).

Get-TraceSource
    [[-Name] <String[]>]
    [<CommonParameters>]

Description

The Get-TraceSource cmdlet gets the trace sources for PowerShell components that are currently in use. You can use the data to determine which PowerShell components you can trace. When tracing, the component generates detailed messages about each step in its internal processing. Developers use the trace data to monitor data flow, program execution, and errors.

The tracing cmdlets were designed for PowerShell developers, but they are available to all users.

Ejemplos

Example 1: Get trace sources by name

Get-TraceSource -Name "*Provider*"

This command gets all of the trace sources that have names that include provider.

Example 2: Get all trace sources

Get-TraceSource

This command gets all of the PowerShell components that can be traced.

Parámetros

-Name

Specifies the trace sources to get. Wildcards are permitted. The parameter name Name is optional.

Propiedades del parámetro

Tipo:

String[]

Valor predeterminado:None
Admite caracteres comodín:True
DontShow:False

Conjuntos de parámetros

(All)
Posición:0
Mandatory:False
Valor de la canalización:True
Valor de la canalización por nombre de propiedad:True
Valor de los argumentos restantes:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Entradas

String

You can pipe a string that contains the name of a trace source to this cmdlet.

Salidas

PSTraceSource

This cmdlet returns objects representing the trace sources.