2011-09-23 117 views

回答

8

像这样:

Set shell = CreateObject("WScript.Shell") 
shell.LogEvent 4, "Your Message Here" 

4是严重性级别。您可以通过MSDN了解有关LogEvent方法的更多信息。

+0

谢谢你的帮助。在哪里写日志?我没有找到它 – Emree

+0

@Emree - 它应该将它写入事件查看器。你可以通过运行运行对话框中的'compmgmt.msc'来找到。查看Google的事件查看器。 – vcsjones

1

您可能只想写入您自己的日志文件。

检查出我的链接更多的信息和细节

http://www.yeshaib.com/2010/08/vbscript-in-the-logging/

'---------------------------------------------------------------------- 
' 
' Please Enter Updates with date and name including line of Change 
'---------------------------------------------------------------------- 
'---------------------------------------------------------------------- 

set objShell = CreateObject("Wscript.Shell") 
set objFSO = CreateObject("Scripting.FileSystemObject") 

'--- Main Begins --------------------------------------- 

WriteToLog("Generic Log.vbs - Write This") 

'--- Main Ends ----------------------------------------- 

'--- Write to log -------------------------------------- 
Sub WriteToLog(strLogMessage) 
Const ForAppending = 8 
Const vbsName = "Generic Log" 

strLogFileName = "C:\GenericLog.log" 
strLogEntryTime = NOW 

'test whether file exists To either write/append to file 
if objFSO.FileExists(strLogFileName) Then 
Set objLogFileTransaction = objFSO.OpenTextFile(strLogFileName, ForAppending) 
Else 
Set objLogFileTransaction = objFSO.CreateTextFile(strLogFileName) 
End if 

objLogFileTransaction.WriteLine strLogEntryTime & chr(9) & chr(58) & chr(9) & vbsName & chr(9) & chr(58) & chr(9) & strLogMessage 
objLogFileTransaction.Close 
WScript.StdOut.WriteLine strLogMessage 
WScript.StdOut.WriteLine "" 
End Sub 
相关问题