服务器之家

服务器之家 > 正文

用VBS记录客户机操作的代码

时间:2020-07-19 11:05     来源/作者:VBS代码网

记录客户机操作的VBS脚本代码.

  1. on error resume next  
  2. strComputer = "."  
  3. Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")  
  4. Set IPConfigSet = objWMIService.ExecQuery _  
  5. ("Select IPAddress from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")  
  6. For Each IPConfig in IPConfigSet  
  7. If Not IsNull(IPConfig.IPAddress) Then   
  8. For i=LBound(IPConfig.IPAddress) to UBound(IPConfig.IPAddress)  
  9. a=IPConfig.IPAddress(i)  
  10. Next  
  11. End If  
  12. Next  
  13.  
  14. strComputer = "."  
  15. Set objWMIService = GetObject("winmgmts:" _  
  16. "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")  
  17. Set colMonitoredProcesses = objWMIService. _   
  18. ExecNotificationQuery("select * from __instancecreationevent " _   
  19. " within 1 where TargetInstance isa 'Win32_Process'")  
  20.  
  21.  
  22. i = 0  
  23.  
  24.  
  25. Do While i = 0  
  26. Set objLatestProcess = colMonitoredProcesses.NextEvent  
  27. b=objLatestProcess.TargetInstance.CommandLine  
  28.  
  29. set fso=createobject("scripting.filesystemobject")  
  30. set file1=fso.opentextfile("\\192.168.0.87\ourway$\ourway.htm",8,true)  
  31. file1.writeline now() & "---" & a & "---" & b & "<hr>"  
  32. file1.close  
  33.  
  34. Loop   
标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意 2019-07-07
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
返回顶部