"start /wait programName.exe /options"
"start /wait "programName.exe" /options""
BTW if you are going to run a program in the program files you need to add quotes to it, since there is a space in "Program Files" so something like this start /wait "%PROGRAMFILES%\Winamp\winamp.exe" even though there are no spaces in the command 🙂
To access something in the windows folder you can also do "%SystemRoot%" in most cases this means "C:\Windows"... such as start /wait %SYSTEMROOT%\SYSTEM32\Defrag.exe C:
To find out commandline commands on a lot of programs just run them with the /? option, usually it will tell you them if they exist, some you must check on.