Limit-EventLog
Published: February 29, 2012
Updated: August 15, 2012
Applies To: Windows PowerShell 2.0, Windows PowerShell 3.0
Limit-EventLog
Syntax
Parameter Set: Default Limit-EventLog [-LogName] <String[]> [-ComputerName <String[]> ] [-MaximumSize <Int64> ] [-OverflowAction <OverflowAction> ] [-RetentionDays <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Limit-EventLog cmdlet sets the maximum size of a classic event log, how long each event must be retained, and what happens when the log reaches its maximum size. You can use it to limit the event logs on local or remote computers.
The cmdlets that contain the EventLog noun (the EventLog cmdlets) work only on classic event logs. To get events from logs that use the Windows Event Log technology in Windows Vista and later versions of Windows, use Get-WinEvent.
Parameters
-ComputerName<String[]>
Specifies a remote computer. The default is the local computer.
Type the NetBIOS name, an Internet Protocol (IP) address, or a fully qualified domain name of a remote computer. To specify the local computer, type the computer name, a dot (.), or "localhost".
This parameter does not rely on Windows PowerShell remoting. You can use the ComputerName parameter of Limit-EventLog even if your computer is not configured to run remote commands.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
Local computer |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-LogName<String[]>
Specifies the event logs. Enter the log name (the value of the Log property; not the LogDisplayName) of one or more event logs , separated by commas. Wildcard characters are not permitted. This parameter is required.
|
Aliases |
none |
|
Required? |
true |
|
Position? |
1 |
|
Default Value |
None |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
true |
-MaximumSize<Int64>
Specifies the maximum size of the event logs in bytes. Enter a value between 64 kilobytes (KB) and 4 gigabytes (GB). The value must be divisible by 64 KB (65536).
This parameter specifies the value of the MaximumKilobytes property of the System.Diagnostics.EventLog object that represents a classic event log.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
None |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-OverflowAction<OverflowAction>
Specifies what happens when the event log reaches its maximum size.
Valid values are:
-- DoNotOverwrite: Existing entries are retained and new entries are discarded.
-- OverwriteAsNeeded: Each new entry overwrites the oldest entry.
-- OverwriteOlder: New events overwrite events older than the value specified by the MinimumRetentionDays property. If there are no events older than specified by the MinimumRetentionDays property value, new events are discarded.
This parameter specifies the value of the OverflowAction property of the System.Diagnostics.EventLog object that represents a classic event log.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
None |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-RetentionDays<Int32>
Specifies the minimum number of days that an event must remain in the event log.
This parameter specifies the value of the MinimumRetentionDays property of the System.Diagnostics.EventLog object that represents a classic event log.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
None |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-Confirm
Prompts you for confirmation before running the cmdlet.
|
Required? |
false |
|
Position? |
named |
|
Default Value |
false |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
|
Required? |
false |
|
Position? |
named |
|
Default Value |
false |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
-
None
None
Outputs
The output type is the type of the objects that the cmdlet emits.
-
None
None
Notes
-
To use Limit-EventLog on Windows Vista and later versions of Windows, open Windows PowerShell with the "Run as administrator" option.
Limit-EventLog changes the properties of the System.Diagnostics.EventLog object that represents a classic event log. To see the current settings of the event log properties, type "get-eventlog -list".
Examples
-------------------------- EXAMPLE 1 --------------------------
This command increases the maximum size of the Windows PowerShell event log on the local computer to 20480 kilobytes (KB) (20 KB).
PS C:\> limit-eventLog -logname "Windows PowerShell" -MaximumSize 20KB
-------------------------- EXAMPLE 2 --------------------------
This command ensures that events in the Security log on the Server01 and Server02 computers are retained for at least 7 days.
PS C:\> limit-eventlog -logname Security -comp Server01, Server02 -retentionDays 7
-------------------------- EXAMPLE 3 --------------------------
These commands change the overflow action of all event logs on the local computer to "OverwriteOlder".
The first command gets the log names of all of the logs on the local computer. The second command sets the overflow action. The third command displays the results.
PS C:\> $logs = get-eventlog -list | foreach {$_.log}PS C:\>limit-eventlog -overflowaction OverwriteOlder -logname $logsPS C:\>get-eventlog -listMax(K) Retain OverflowAction Entries Log------ ------ -------------- ------- ---15,168 0 OverwriteOlder 3,412 Application512 0 OverwriteOlder 0 DFS Replication512 0 OverwriteOlder 17 DxStudio10,240 7 OverwriteOlder 0 HardwareEvents512 0 OverwriteOlder 0 Internet Explorer512 0 OverwriteOlder 0 Key Management Service16,384 0 OverwriteOlder 4 ODiag16,384 0 OverwriteOlder 389 OSessionSecurity15,168 0 OverwriteOlder 19,360 System15,360 0 OverwriteOlder 15,828 Windows PowerShell
Related topics