手机
当前位置:查字典教程网 >编程开发 >ASP教程 >清空iis log 中自己登录ip的vbs
清空iis log 中自己登录ip的vbs
摘要:OptionExplicitDimsourcefile,ipaddress,objargsconstdestfile="tempfile"C...

Option Explicit

Dim sourcefile,ipaddress,objargs

const destfile="tempfile"

Const ForWriting = 2

Dim Text

Dim fso,objNet,ServiceObj

Dim txtStream, txtStreamOut

Set objArgs = WScript.Arguments

If objArgs.Count = 2 Then

sourcefile=objArgs(0)

ipaddress=objargs(1)

Else

wscript.echo "Parameter Error"+ vbcrlf

wscript.Echo "USAGE:KillLog.vbs LogFileName YourIP."

wscript.Quit 1

End If

Set fso = CreateObject("Scripting.FileSystemObject")

if fso.FileExists (sourcefile) then

Set objNet = WScript.CreateObject( "WScript.Network" )

Set ServiceObj = GetObject("WinNT://" & objNet.ComputerName & "/w3svc")

Set objNet=nothing

ServiceObj.stop

wscript.sleep 6000

Set txtStream = fso.OpenTextFile(sourcefile)

Set txtStreamOut = fso.OpenTextFile(destfile, ForWriting, True)

Do While Not (txtStream.atEndOfStream)

Text = txtStream.ReadLine

if instr(Text,ipaddress)=0 then

txtStreamOut.WriteLine Text

end if

Loop

Set txtStream = Nothing

Set txtStreamOut = Nothing

WScript.Echo "The log file-- " & sourcefile &" has cleaned your IP!"

Else

WScript.Echo "The Log file-- " & sourcefile & " has not found!"

Wscript.quit

End If

fso.Copyfile destfile, sourcefile

fso.deletefile destfile

Set fso=Nothing

ServiceObj.start

Set ServiceObj = Nothing

【清空iis log 中自己登录ip的vbs】相关文章:

LINE9的目录浏览源程序

批量文件自动搜索替换插入器 Ver2.1

asp html代码转安全ascii代码

利用ASP在浏览器上打印输出

一个可以自动创建多级目录的函数

asp文件上传:文件上传 源代码

asp获取数据库的连接属性的方法

非常不错的flash采集程序测试通过

javascript asp教程错误处理

asp中创建多级目录的两段代码

精品推荐
分类导航