테스트 서버에 이벤트가 가득 차버렸다. 신경 쓰여서 삭제하기로 함
관리자 권한으로 PowerShell 실행
wevtutil el | Foreach-Object {wevtutil cl “$_”}
명령을 입력
이벤트 뷰어를 실행하면 거의 모든 이벤트가 제거됨
To clear the…
- Application event log:
wevtutil cl Application- Security event log:
wevtutil cl Security- Setup event log:
wevtutil cl Setup- System event log:
wevtutil cl SystemYou can clear any of the Event logs the same way, all you have to know is the log name. To get a full list of the log names, simply enter wevtutil el in the elevated PowerShell window.
출처: <http://www.sevenforums.com/tutorials/320451-event-viewer-clear-all-events.html>
sevenforums.com에서 정보를 얻음.