Reputation:
What batch file commands, if any, can start a program and place it offscreen?
Upvotes: 0
Views: 252
Reputation: 794
I can't think of any native batch file commands but it is possible with a free third-party utility AutoHotKey.
The WinMove command documentation (http://www.autohotkey.com/docs/commands/WinMove.htm) specifically states:
Negative values are allowed for the x and y coordinates to support multi-monitor systems and to allow a window to be moved entirely off screen.
Upvotes: 1