如何通过BAT文件打开镀铬2次

时间:2016-04-06 06:39:58

标签: windows google-chrome batch-file

每天上班我打开镀铬2次,每个窗口打开3个网站。然后我打开Word,远程桌面和Outlook。

为了更快地完成所有这些,我决定写一个bat文件。一个简单的文件,只需单击一下即可为我启动所有程序。

使用Chrome的部分如下所示:

start C:\PROGRA~2\Google\Chrome\Application\chrome.exe website1 website2 website3
start C:\PROGRA~2\Google\Chrome\Application\chrome.exe website4 website5 website6

我希望这会打开2个Chrome窗口,然后在每个窗口中打开正确的3个网站。 但它打开了1个Chrome浏览器窗口,并在一个窗口中打开了6个网站。

有人知道如何让它做我想做的事吗?

1 个答案:

答案 0 :(得分:3)

在第二行添加--new-window开关。

start C:\PROGRA~2\Google\Chrome\Application\chrome.exe website1 website2 website3
start C:\PROGRA~2\Google\Chrome\Application\chrome.exe --new-window website4 website5 website6