服务器之家

服务器之家 > 正文

清空iis log 中自己登录ip的vbs

时间:2019-11-01 12:48     来源/作者:asp教程网
  1. Option Explicit  
  2.  
  3. Dim sourcefile,ipaddress,objargs  
  4.  
  5. const destfile="tempfile"  
  6. Const ForWriting = 2  
  7.  
  8. Dim Text  
  9. Dim fso,objNet,ServiceObj  
  10. Dim txtStream, txtStreamOut  
  11.  
  12. Set objArgs = WScript.Arguments  
  13. If objArgs.Count = 2 Then  
  14. sourcefile=objArgs(0)  
  15. ipaddress=objargs(1)  
  16. Else  
  17. wscript.echo "Parameter Error"+ vbcrlf  
  18. wscript.Echo "USAGE:KillLog.vbs LogFileName YourIP."  
  19. wscript.Quit 1  
  20. End If  
  21.  
  22.  
  23. Set fso = CreateObject("Scripting.FileSystemObject")  
  24. if fso.FileExists (sourcefile) then  
  25. Set objNet = WScript.CreateObject( "WScript.Network" )  
  26. Set ServiceObj = GetObject("WinNT://" & objNet.ComputerName & "/w3svc")  
  27. Set objNet=nothing  
  28. ServiceObj.stop  
  29. wscript.sleep 6000  
  30. Set txtStream = fso.OpenTextFile(sourcefile)  
  31. Set txtStreamOut = fso.OpenTextFile(destfile, ForWriting, True)  
  32. Do While Not (txtStream.atEndOfStream)  
  33. Text = txtStream.ReadLine  
  34. if instr(Text,ipaddress)=0 then  
  35. txtStreamOut.WriteLine Text  
  36. end if  
  37. Loop  
  38.  
  39. Set txtStream = Nothing  
  40. Set txtStreamOut = Nothing  
  41.  
  42. WScript.Echo "The log file-- " & sourcefile &" has cleaned your IP!"  
  43. Else  
  44. WScript.Echo "The Log file-- " & sourcefile & " has not found!"  
  45. Wscript.quit  
  46. End If  
  47. fso.Copyfile destfile, sourcefile  
  48. fso.deletefile destfile  
  49. Set fso=Nothing  
  50. ServiceObj.start  
  51. Set ServiceObj = Nothing  
标签:
IIS vbs log 

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部