I'm not sure exactly what setup you've got for software, but I'm using WoW Maximizer and a .bat file to load up my 5 instances. Here's my startup file:
Code:
start "WoW1" "D:\WoW\Maximizer.exe"
ping -n 8 127.0.0.1 >NUL
start "WoW2" "D:\WoW2\Maximizer.exe"
ping -n 8 127.0.0.1 >NUL
start "WoW3" "D:\WoW3\Maximizer.exe"
ping -n 8 127.0.0.1 >NUL
start "WoW4" "D:\WoW4\Maximizer.exe"
ping -n 8 127.0.0.1 >NUL
start "WoW5" "D:\WoW5\Maximizer.exe"
This will kick off each WoW window in 8 second intervals - enough time for them to load and get placed in the correct location by Maximizer.
As for getting the windows where I want them, I have WoW Maximizer.exe and .ini files in each WoW root folder. Here is an example .ini file (from my WoW5 directory):
Code:
#
# WoW Maximizer configuration file
#
# Open Readme.html for instructions.
#
# Lines starting with '#' are ignored.
# Remove the '#' from a line to use it and set the values you prefer.
#use 2nd display
device = 2
#2nd display's resolution is 1680x1050
resolution = 1680x1050
#margin = distance from top, bottom, left, right
margin = 525,0,840,0
Finally, I set what I want the 'in-game' resolution to be.. which is the exact size of the WoW window. Open the WoW/WTF/config.wtf file, and edit this line to the desired resolution of that WoW instance:
SET gxResolution "840x525"
Using the batch file, WoW Maximizer, and the config.wtf file, I can load all WoW instances, put them in the correct locations across my displays, and have them be the correct resolution.
If you want to do the same as me, you'll want to set your config.wtf files like this:
WoW #1:
SET gxResolution "1280x512"
WoW #2&3:
SET gxResolution "640x512"
Then set each maximizer.ini file like this:
WoW #1:
device = 1
resolution = 1280x1024
#margin = distance from top, bottom, left, right
margin = 512,0,0,0
WoW #2:
device = 1
resolution = 1280x1024
#margin = distance from top, bottom, left, right
margin = 0,512,0,640
WoW #3:
device = 1
resolution = 1280x1024
#margin = distance from top, bottom, left, right
margin = 0,512,640,0
And last, to make a .bat file to load them all (use whatever your WoW install paths are):
start "WoW1" "D:\WoW\Maximizer.exe"
ping -n 8 127.0.0.1 >NUL
start "WoW2" "D:\WoW2\Maximizer.exe"
ping -n 8 127.0.0.1 >NUL
start "WoW3" "D:\WoW3\Maximizer.exe"
You may need to change those 8's to 10's/15's/20's/25's if each WoW instance is taking awhile to load.
Connect With Us