批量打开网页和关闭网页的批处理代码

如果浏览器的安装路径中有空格,可以用~代替,如下:
C:\Program Files\Internet Explorer\iexplore.exee
可以替换为c:\progra~1\Intern~1\iexplore.exee

1、用IE浏览器打开网页的批处理代码:start c:\progra~1\Intern~1\iexplore.exe 网址
例子:
@echo off
title 打开网页
start c:\progra~1\Intern~1\iexplore.exe "http://www.baidu.com"

如果安装了多个浏览器,建议将IE先设置为默认之后再尝试,代码就可以精简为 start iexplore.exe "http://www.baidu.com"

2、用谷歌浏览器打开网页的批处理代码:安装路径 网址
例子:
@echo off
title 打开网页
start C:\Users\Administrator\AppData\Local\Google\Chrome\Application\chrome.exe "http://www.google.com.hk"

3、用火狐浏览器打开网页的批处理代码:安装路径 网址
例子:
@echo off
title 打开网页
start C:\Program" "Files\Mozilla" "Firefox\firefox.exe "http://www.163.com"

4、批量打开网页的代码:

echo off
echo 现在是 %date% %time%echo
start www.baidu.com
start www.163.com
echo 开启完成,正在返回!

5、关闭浏览器的批处理代码:

@echo off
title 结束进程
taskkill /f /t /im iexplore.exe
taskkill /f /t /im chrome.exe
taskkill /f /t /im firefox.exe

原文地址:
http://blog.csdn.net/myjlvzlp/article/details/8126343

Related Posts