date/t >>ping.txt
time/t >>ping.txt
ping www.sina.com.cn >>ping.txt
......(你要ping的网站,格式如上)
Echo ------------------------------------------------------------------------------------------- >>ping.txt
以上内容保存为: ping.bat
自动生成带当前日期和时间的文件名,这个我还不会,不过我这个批处理生成的文件也有日期和时间的,每次都写入同一个文件,也方便做比较呀。
希望能解决你的问题。
set w=wscript.createobject("wscript.shell")
Set Fsys=CreateObject("Scripting.FileSystemObject")
m_time=time
for i=1 to len(m_time)
str=mid(m_time,i,1)
if str=":" then
temp=temp+"-"
else temp=temp+str
end if
next
m_time=temp
w.run "ping www.163.com >"&"d:\"&date&" "&m_time&".txt",1,true
把以上内容保存为ping.vbs后双击就可以了。(www.163.com是你想PING的网址。)
方法如下:
set w=wscript.createobject("wscript.shell")
Set Fsys=CreateObject("Scripting.FileSystemObject")
m_time=time
for i=1 to len(m_time)
str=mid(m_time,i,1)
if str=":" then
temp=temp+"-"
else temp=temp+str
end if
next
m_time=temp
w.run "ping www.123456.com >"&"d:\"&date&" "&m_time&".txt",1,true
把以上内容保存为ping.vbs后双击就可以了。(www.123456.com是你想PING的网址。)
进入windowsXP命令提示符模式,输入命令:
ping www.sina.com.cn >>c:\a.txt
或
ping www.sina.com.cn >c:\a.txt
前者用>>表示结果追加在原a.txt文件内容的后面,后者>则表示覆盖原a.txt文件内容,保留最近这次操作的内容。
它们都称为:重定向符,这是dos下的命令参数。