I am trying to create a batch file (actually a batch file converted into an .exe) to: 1)load Mala in a maximized state; 2)CabVol minimized; 3)Xpadder minimized. I am using this .exe file as my shell application for InstantSheller.
When I type the following, CabVol opens minimized, Mala opens maximized, but Xpadder never opens...
start/min "Xpadder" "C:\Program Files\Xpadder\Xpadder.exe"
start/min "cabvol" "C:\Program Files\CabVol\CabVol.exe"
start/max "mala" "C:\Mala Files\mala\mala 1.04\mala.exe"
When I type this, CabVol opens minimized, Mala opens maximized, and Xpadder opens maximized (as would be expected)...
start "Xpadder" "C:\Program Files\Xpadder\Xpadder.exe"
start/min "cabvol" "C:\Program Files\CabVol\CabVol.exe"
start/max "mala" "C:\Mala Files\mala\mala 1.04\mala.exe"
The statements are identical except for "/min" in the top Xpadder start statement. Why won't Xpadder open with the first batch file? Is it possible Xpadder opening and closing. Whenever I go to task manager a file in the list closes, but it happens so quickly my eye can't focus to tell which file closes.
I am by no means a batch file writing expert, and this has me pretty stumped.