공유 드라이브에 이벤트 로그를 저장하기위한 배치 파일이 있습니다. 나는 XP와 Server 2003을 아주 많이 노력하지 않고이 작업을하고 싶습니다. Wevtutil은 Vista 이상에서만 사용할 수 있으므로 무엇을 사용할 수 있습니까?
rem Script start here
rem Timestamp Generator
set BACKUP_PATH=\\shared-drive\it\Temp\Event-Logs\
rem Parse the date (e.g., Thu 02/28/2013)
set cur_yyyy=%date:~10,4%
set cur_mm=%date:~4,2%
set cur_dd=%date:~7,2%
rem Parse the time (e.g., 11:20:56.39)
set cur_hh=%time:~0,2%
if %cur_hh% lss 10 (set cur_hh=0%time:~1,1%)
set cur_nn=%time:~3,2%
set cur_ss=%time:~6,2%
set cur_ms=%time:~9,2%
rem Set the timestamp format
set timestamp=%cur_yyyy%%cur_mm%%cur_dd%-%cur_hh%%cur_nn%%cur_ss%%cur_ms%
rem Set the computername format
set servname=%computername%
wevtutil epl System %BACKUP_PATH%\%servname%_%timestamp%_system.evtx
wevtutil epl Application %BACKUP_PATH%\%servname%_%timestamp%_application.evtx
wevtutil epl Security %BACKUP_PATH%\%servname%_%timestamp%_security.evtx
rem End of Script
C:\> eventcreate /?