码迷,mamicode.com
首页 > 其他好文 > 详细

bat操作浏览器命令

时间:2020-03-10 12:01:48      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:inter   word   syn   alt   plain   不能   com   ken   tar   

1简单调用

1
start www.baidu.com

注意:网址不能有“&”连接的参数,如不能打开:www.baidu.com/a=1&b=2

2带多个参数的URL

1
2
3
start iexplore "www.baidu.com/a=1&b=2"
或浏览器全路径
star "c:\\program files\internet explore\iexplore.exe" "www.baidu.com/a=1&b=2"

3批量打开

1
2
3
4
5
6
7
8
9
10
@echo off
for /f "tokens=*" %%i in (www.txt) do (
start %%i 
pause
)
www.txt中每个网址一行
/f 表示打开文件
tokens 表示取所有列
%%i 定义变量
www.txt 文件名

4定时关闭

1
2
3
4
5
6
7
8
9
10
11
12
@echo off
for /f "tokens=*" %%i in (www.txt) do (
start iexplore %%i&ping /w 1000 /n 1  1.1 >nul 2>nul
taskkill /f /im iexplore.exe
)
ping /w无回应时超时毫秒
/n ping的次数
1.1 一个不存在的主机地址
>nul 不显示正确提示信息
2>nul 不显示错误提示信息
taskkill /f 强制结束进程
/im 通过影响名称确定进程

5最小化启动

1
start /min iexplore "%%a"

bat操作浏览器命令

标签:inter   word   syn   alt   plain   不能   com   ken   tar   

原文地址:https://www.cnblogs.com/mengxiangdetiankonghenda/p/12454482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!