Specify monitor when opening file. (.bat)
The following .bat file below simply opens two text files overlaying them, but I'm wondering if it's possible to define a specific display source, or if anyone can assist in providing the correct parameters. @echo off START /max /wait NOTEPAD.EXE C:\test\screen1.txt START /max /wait NOTEPAD.EXE C:\test\screen2.txt What I'm trying to get: @echo off START /max /wait NOTEPAD.EXE C:\test\screen1.txt "monitor1" START /max /wait NOTEPAD.EXE C:\test\screen2.txt "monitor2" So the results I am trying to receive is that screen1.txt opens on monitor1, and screen2.txt on monitor2. Unless the application