user611089
user611089

Reputation:

Open program offscreen from Win batch file

What batch file commands, if any, can start a program and place it offscreen?

Upvotes: 0

Views: 252

Answers (1)

RichardC
RichardC

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

Related Questions