所以我写了一个批处理文件,在单独的窗口中打开单独的文档/网页,但我有一个多个监视器的设置。你能在批处理文件中写一些东西来告诉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"
感谢。