批处理完成 文本里面 找内容 再比较大小
用批处理完成在一个名1.txt文件中找到time=*的值(*为不固定数字)然后判断time值如果小于60无动作超过60发出警报最好是图文类警报因为该批出理在后台运行然后循...
用批处理完成 在一个名 1.txt 文件中找到 time=* 的 值 (*为不固定数字) 然后判断time值 如果小于60 无动作 超过60发出警报 最好是图文类警报 因为该批出理在后台运行 然后循环这个批处理 做到后台监视功能
我试过了 但是你用 命令取出来的 整行的
我的意思是 用命令做一个一直检测DNS的速度的 工具
ping 8.8.8.8 -t >1.txt
然后在1.txt里取值比较 time 值大于60做警告 小于 则忽略
请补充你的回答
三楼的09cdy 你滴不行 还是要改进呀
运行的时候 不管大不大于60 都弹出窗口。。。汗。。
希望是自己测试可以用的 再发 展开
我试过了 但是你用 命令取出来的 整行的
我的意思是 用命令做一个一直检测DNS的速度的 工具
ping 8.8.8.8 -t >1.txt
然后在1.txt里取值比较 time 值大于60做警告 小于 则忽略
请补充你的回答
三楼的09cdy 你滴不行 还是要改进呀
运行的时候 不管大不大于60 都弹出窗口。。。汗。。
希望是自己测试可以用的 再发 展开
展开全部
没必要把ping的结果写入临时文件1.txt再检测
可以用批处理直接判断ping命令的结果
if not "%2"=="snow" mshta vbscript:createobject("wscript.shell").run("""%~F0"" wind snow",vbhide)(window.close)&&exit
for /l %%0 in (0)do ping /n 1 8.8.8.8| findstr /i "out"&& call :wind 检测超时|| for /f "tokens=8 delims=m= " %%1 in ('ping /n 1 8.8.8.8^| findstr /i "time="')do if %%1 geq 60 call :wind 返回时间大于60MS& ping 127.1 /n 3 >nul
:wind
mshta vbscript:msgbox("%1 %time%",16,"错误")(close)
可以用批处理直接判断ping命令的结果
if not "%2"=="snow" mshta vbscript:createobject("wscript.shell").run("""%~F0"" wind snow",vbhide)(window.close)&&exit
for /l %%0 in (0)do ping /n 1 8.8.8.8| findstr /i "out"&& call :wind 检测超时|| for /f "tokens=8 delims=m= " %%1 in ('ping /n 1 8.8.8.8^| findstr /i "time="')do if %%1 geq 60 call :wind 返回时间大于60MS& ping 127.1 /n 3 >nul
:wind
mshta vbscript:msgbox("%1 %time%",16,"错误")(close)
展开全部
findstr "\<time=.*" 1.txt>0.txt
set /p t=<0.txt
del 0.txt
echo %t:~5,-1%
if %t:~5,-1% gtr 60 goto :code1
:code1
cls
mshta vbscript:createobject("sapi.spvoice").speak("fack you")(window.close)
::循环的话调用自己
pause
set /p t=<0.txt
del 0.txt
echo %t:~5,-1%
if %t:~5,-1% gtr 60 goto :code1
:code1
cls
mshta vbscript:createobject("sapi.spvoice").speak("fack you")(window.close)
::循环的话调用自己
pause
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
findstr "\<time=.这里换成值" 1.txt>0.txt
set /p t=<0.txt
del 0.txt
echo %t:~5,-1%
if %t:~5,-1% gtr 60 goto :code1
:code1
cls
mshta vbscript:createobject("sapi.spvoice").speak("fack you")(window.close)
pause
set /p t=<0.txt
del 0.txt
echo %t:~5,-1%
if %t:~5,-1% gtr 60 goto :code1
:code1
cls
mshta vbscript:createobject("sapi.spvoice").speak("fack you")(window.close)
pause
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询