Powershellを使用して「アプリケーションとサービスのログ」をクリアする方法を知っている人はいますか?Clear-EventLogを使用してWindowsログを簡単にクリアできますが、Windowsイベントログの[アプリケーションとサービスログ]の下にあるサブフォルダーをクリアできません。
質問する
4906 次
2 に答える
2
これはあなたが必要なもののように見えます
http://gallery.technet.microsoft.com/scriptcenter/4502522b-5294-4c31-8c49-0c9e94db8df9
更新-そのリンクにはログインがあります。これがそのスクリプトです-
Function Global:Clear-Winevent ( $Logname ) {
<#
.SYNOPSIS
Given a specific Logname from the GET-WINEVENT Commandlet
it will clear the Contents of that log
.DESCRIPTION
Cmdlet used to clear the Windows Event logs from Windows 7
Windows Vista, Server 2008 and Server 2008 R2
.EXAMPLE
CLEAR-WINEVENT -Logname Setup
.EXAMPLE
GET-WINEVENT -Listlog * | CLEAR-WINEVENT -Logname $_.Logname
Clear all Windows Event Logs
.NOTES
This is a Cmdlet that is not presently in Powershell 2.0
although there IS a GET-WINEVENT Command to list the
Contents of the logs. You can utilize this instead of
WEVTUTIL.EXE to clear out Logs. Special thanks to Shay Levy
(@shaylevy on Twitter) for pointing out the needed code
#>
[System.Diagnostics.Eventing.Reader.EventLogSession]::GlobalSession.ClearLog("$Logname")
}
于 2013-02-14T23:37:18.160 に答える
2
PowerShell-パフォーマンス用に最適化:
バージョン1:
function Clear-EventLogs-Active
{
ForEach ( $l in ( Get-WinEvent ).LogName | Sort | Get-Unique )
{
[System.Diagnostics.Eventing.Reader.EventLogSession]::GlobalSession.ClearLog("$l")
}
Clear-EventLog -LogName "System"
}
。
バージョン2:
function Clear-EventLogs-All
{
ForEach ( $l in Get-WinEvent -ListLog * -Force )
{
if ( $l.RecordCount -gt 0 )
{
$ln = $l.LogName
[System.Diagnostics.Eventing.Reader.EventLogSession]::GlobalSession.ClearLog("$ln")
}
}
Clear-EventLog -LogName "System"
}
。
両方のバージョンが514ログで動作しています。
バージョン1(0.3007762秒)-イベントを含むログのみを取得します
バージョン2(0.7026473秒)-すべてのログを取得し、イベントのあるログのみをクリアします
于 2015-05-19T05:14:34.893 に答える