当前位置:web 服务器 > IIS >>

清空iis log 中自己登录ip的vbs(仅供研究使用)

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
补充:asp教程,高级应用 
Apache
IIS
Nginx
Tomcat
如果你遇到web 服务器难题:
请访问www.zzzyk.com 试试
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,