Skip to content

Get-LogProperties

SYNOPSIS

Retrieves the properties of a Windows event log.

SYNTAX

Get-LogProperties [-Name] <Object> [<CommonParameters>]

DESCRIPTION

> This cmdlet is only available on the Windows platform. This cmdlet gets the configuration settings of a Windows event log. This cmdlet is used by the `Enable-PSTrace` and `Disable-PSTrace` cmdlets.

EXAMPLES

Example 1: Get the configuration settings of the Windows PowerShell event log

Get-LogProperties 'Windows PowerShell'

Name       : Windows PowerShell
Enabled    : True
Type       : Admin
Retention  : False
AutoBackup : False
MaxLogSize : 15728640

PARAMETERS

-Name

The name of the event provider.

Type: System.Object
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

CommonParameters

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

INPUTS

System.String

OUTPUTS

Microsoft.PowerShell.Diagnostics.LogDetails

The PSDiagnostics module adds the LogDetails class to the `Microsoft.PowerShell.Diagnostics` namespace.

NOTES

Set-LogProperties

Enable-PSTrace

Disable-PSTrace

Back to top