批处理文件命令用于在不同屏幕上的新窗口中打开不同的命令

时间:2014-12-11 19:52:40

标签: windows batch-file

所以我写了一个批处理文件,在单独的窗口中打开单独的文档/网页,但我有一个多个监视器的设置。你能在批处理文件中写一些东西来告诉windows在特定的监视器中打开吗?此外,这可以写入Chrome吗?我只能通过IE从批处理文件中打开单独的窗口。

下面是同一个批处理文件:

@echo OFF

start "iexplore" "c:\Program Files\Internet Explorer\iexplore.exe" "www.facebook.com"
start "iexplore" "c:\Program Files\Internet Explorer\iexplore.exe" "www.yahoo.com"
start "filename" "C:\Users\username\Desktop\filename.xlsx"

感谢。

0 个答案:

没有答案