Reputation: 213
I have monitors and I need 8 specific websites to automatically come up maximized on each one using a batch file or a tool. Using windows server 2008 r2 and IE11. Any ideas? I've looked and found some examples but nothing seems to work.
Thanks
EDIT
Current batch looks like this
start iexplore http://google.com
start iexplore http://google.com
start iexplore http://google.com
start iexplore http://google.com
start iexplore http://google.com
but I need them to autop open on diff monitors full screened
Upvotes: 0
Views: 447
Reputation: 9591
You would have to do this with javascript I think.
Type this into the URL field:
javascript:resizeTo(1980,1080);moveTo(0,0)
javascript:resizeTo(1980,1080);moveTo(1981,0)
etc...
This will not work in Chrome. It will work in Internet Explorer, however.
Upvotes: 1