Are you actually wanting to run some commands in each window, or just open them to the given path and with the given title?
If the latter, this should do it
Code:
@echo off
start %SystemRoot%\system32\calc.exe
start "" "C:\Program Files\Pidgin\pidgin.exe"
start "" "C:\Program Files\Mozilla Firefox\firefox.exe"
Start "admin tool" cmd /k cd "C:\Development\VirtualTradingSystem\clean_trunk\tf-tradeweb"
Start "temp_pass.py" cmd /k cd "C:\Development\VirtualTradingSystem\clean_trunk\scripts"
you can also specify the starting directory in the Start command:
Code:
@echo off
start %SystemRoot%\system32\calc.exe
start "" "C:\Program Files\Pidgin\pidgin.exe"
start "" "C:\Program Files\Mozilla Firefox\firefox.exe"
Start "admin tool" /D "C:\Development\VirtualTradingSystem\clean_trunk\tf-tradeweb" cmd /k
Start "temp_pass.py" /D "C:\Development\VirtualTradingSystem\clean_trunk\scripts" cmd /k