温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

在windows条件,Ping加上时间戳,并保存到文件

发布时间:2020-06-25 16:14:04 来源:网络 阅读:2140 作者:chunjia 栏目:系统运维

在windows条件,Ping加上时间戳,并保存到文件


转载:http://blog.csdn.net/byply/article/details/50628403


1、在D盘新建“ping.vbs”文件,输入如下代码:


Dim args, flag, unsuccOut

args=""

otherout=""

flag=0


If WScript.Arguments.count = 0 Then

WScript.Echo "Usage: cscript tping.vbs [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]"

WScript.Echo "                         [-s count] [[-j host-list] | [-k host-list]]"

WScript.Echo "                         [-r count] [-w timeout] destination-list"

wscript.quit

End if


For i=0 to WScript.Arguments.count - 1

args=args & " " & WScript.Arguments(i)

Next


Set shell = WScript.CreateObject("WScript.Shell")

Set re=New RegExp

re.Pattern="^Reply|^Request|^来自|^请求"


Set myping=shell.Exec("ping" & args)


while Not myping.StdOut.AtEndOfStream

   strLine=myping.StdOut.ReadLine()

'WScript.Echo  "原数据" & chr(9) & strLine

   r=re.Test(strLine)

   If r Then

WScript.Echo date & " "& time & chr(9) & strLine

flag=1

   Else

unsuccOut=unsuccOut & strLine

   End if

Wend


if flag = 0 then

WScript.Echo unsuccOut

end if


2、输入以下命令:


cscript ping.vbs www.baidu.com -t -l 1000 -w 5000>sseping.txt  


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI