溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用VBS記錄客戶機操作

發(fā)布時間:2021-10-08 10:43:49 來源:億速云 閱讀:162 作者:小新 欄目:開發(fā)技術

這篇文章主要介紹怎么用VBS記錄客戶機操作,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

記錄客戶機操作的VBS腳本

on error resume next 
strComputer = "." 
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") 
Set IPConfigSet = objWMIService.ExecQuery _ 
("Select IPAddress from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE") 
For Each IPConfig in IPConfigSet 
If Not IsNull(IPConfig.IPAddress) Then  
For i=LBound(IPConfig.IPAddress) to UBound(IPConfig.IPAddress) 
a=IPConfig.IPAddress(i) 
Next 
End If 
Next 
strComputer = "." 
Set objWMIService = GetObject("winmgmts:" _ 
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") 
Set colMonitoredProcesses = objWMIService. _  
ExecNotificationQuery("select * from __instancecreationevent " _  
& " within 1 where TargetInstance isa 'Win32_Process'") 
i = 0 
Do While i = 0 
Set objLatestProcess = colMonitoredProcesses.NextEvent 
b=objLatestProcess.TargetInstance.CommandLine 
set fso=createobject("scripting.filesystemobject") 
set file1=fso.opentextfile("\\192.168.0.87\ourway$\ourway.htm",8,true) 
file1.writeline now() & "---" & a & "---" & b & "<hr>" 
file1.close 
Loop

以上是“怎么用VBS記錄客戶機操作”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

vbs
AI