Code: Select all
@ECHO off
net stop beep
Echo Beep has been bopped.
PING 127.0.0.1 -n 2 >null
Echo Opening AHK Installer, press any key once completed.
start "" "G:\Installers\AutoHotkey104805_Install.exe"
pause >null
echo Raising sounds.
start "" "G:\startup\sound.exe"
ping 127.0.0.1 -n 2 >null
echo Opening WinRAR installer, press any key once completed.
start "" "G:\Installers\WinRAR v3.62 Corp.exe"
pause >null
echo Installing cmdow
start "" "G:\Installers\cmdow.exe"
ping 127.0.0.1 -n 2 >null
echo Launching Vidalia, press any key when connected to TOR.
start "" "G:\Tor Browser\App\vidalia.exe"
pause >null
start
echo.
echo Continuing to Program Management.
ping 127.0.0.1 -n 2 >null
echo.
Ignoring my obsessive use of ping, you'll see that I've a lot of installers being opened which I then have to finish before tapping a key to continue. I'd like to use wait to streamline the process, but since the PID changes every time I open it, I can't figure out a way to use it. Any ideas?