Hi,

Try putting "pause" after each command so you can see what it says in the CMD window.

[code:1]
REM batch file to launch 3 evenly spaced wows
REM Left monitor
c:\program files\wowburning2\maximizer.exe --margin 480,30,0,0
pause
REM top of right mon
c:\program files\wowburning2\maximizer.exe --margin 0,570,0,840
pause
REM bottom of right mon
c:\program files\wowburning2\maximizer.exe --margin 0,570,840,0
pause
[/code:1]

EDIT: My 1st guess is that the - program files - is causing the problem. You will need to put the command in quotes because it contains spaces. Try:

[code:1]
REM batch file to launch 3 evenly spaced wows
REM Left monitor
"c:\program files\wowburning2\maximizer.exe" --margin 480,30,0,0
REM top of right mon
"c:\program files\wowburning2\maximizer.exe" --margin 0,570,0,840
REM bottom of right mon
"c:\program files\wowburning2\maximizer.exe" --margin 0,570,840,0
[/code:1]