如何使用bat批处理文件打开多个指定网页,很简单
步骤:
(1)新建文本文件.txt, 重命名,更改后缀名为".bat"
(2)编辑bat文本文件,如下:
@echo off
cd /d cd /d C:\Users\HP\AppData\Local\Google\Chrome\Application\chrome.exe
start chrome.exe http://www.baidu.com
start chrome.exe https://www.sina.com.cn/
(3)保存bat,双击运行即可。