VBS 를 사용하여 뭔가를 기록하려고 할 때, 로그가 장기적으로 남는 경우 해당 로그를 기록하기 위해 파일을 따로 만들기 보다는 이벤트 로그를 사용하는 편이 편할 때가 있다.
그 경우 아래의 스크립트를 VBS 상에 삽입하면 간편하게 이벤트 로그를 삽입할 수 있다.
안에 있는 주석들은 직관적이니... 추가적인 설명을 하지는 않는다.
' Constants for type of event log entry
const EVENTLOG_SUCCESS = 0
const EVENTLOG_ERROR = 1
const EVENTLOG_WARNING = 2
const EVENTLOG_INFORMATION = 4
const EVENTLOG_AUDIT_SUCCESS = 8
const EVENTLOG_AUDIT_FAILURE = 16
strMessage = "My event log message..."
set objShell = CreateObject("WScript.Shell")
objShell.LogEvent EVENTLOG_INFORMATION, strMessage
'IT Professional > Windows Management Technology' 카테고리의 다른 글
AD User Password reset script (0) | 2010.02.25 |
---|---|
Ad Password 변경 Script (7) | 2010.02.24 |
말도 많도 탈도 많은 Hyper-V 이야기 : 첫번째 (0) | 2010.02.15 |
Microsoft Hyper-v Capacity design (0) | 2010.02.01 |
Windows 2008 R2 Hyper-v Bluescreen (0) | 2010.01.30 |