0
我寫的VBScript代碼來監控系統開始和結束的時間,但它不是在同一天「這意味着不公開記錄,寫在同一日期的文件該如何解決這個我的VBscript代碼有什麼問題?
Dim objFS, objFile
Dim crdate,ckdate,fname
Set objFS = CreateObject("Scripting.FileSystemObject")
do
crdate = Day(now) & "-" & Month(now) & "-" & Year(now)
fname = crdate & ".txt"
if (objFS.FileExists(fname)) Then
do
ckdate = Day(now) & "-" & Month(now) & "-" & Year(now)
objFile.WriteLine(Time & "\n")
wscript.sleep 300000
loop until ckdate <> crdate
else
Set objFile = objFS.CreateTextFile(fname)
end if
loop
Windows已經自己監視啓動和關閉時間。檢查系統事件日誌中是否有源「eventlog」和事件ID 60xx的消息。 –
@AnsgarWiechers我相信內核電源事件提供更準確的關於啓動/關閉w/12/13事件ID的描述。 –
你的意思是Kernel-General,而不是Kernel-Power。 –