欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-03-02 12:31:18
如果浏览器的安装路径中有空格,可以用“ ”代替,如下: c:\program files\mozilla firefox\firefox.exe 可以替换为c:\pro...

如果浏览器的安装路径中有空格,可以用“ ”代替,如下:
c:\program files\mozilla firefox\firefox.exe
可以替换为c:\program" "files\mozilla" "firefox\firefox.exe

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" 

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 
mode con lines=16 
title 批量打开网页 
color 2f 
cls 
echo. 
echo  现在是 %date% %time%echo 
echo ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 
start www.baidu.com 
start www.jb51.net 
echo 开启完成,正在返回! 

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

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

以上就是cmd批量打开网页和关闭网页的批处理代码,大家可以多测试一下