1.

Solve : Cant figure out how to start regular programs like Ad-Aware from .BAT?

Answer»

I've been trying to figure out how to start multiple .EXE programs from a .bat command, when I run the command it just brings up the black and white .CMD window. I typed START "C:\Program Files\Lavasoft\Ad-Aware SE Personal\Ad-Aware.exe" into the .bat file but I cant figure this out. I'm SURE someone knows what they're doing.is that your real path

or u can use this code

cd "C:\Program Files\Lavasoft\Ad-Aware SE Personal\"
start Ad-Aware.exeWhen using the START command with spaces in the path, you need 2 sets of quotes.  The first set of quotes will be the window title of the start command.  Nwlun's suggestion should work, but if you want to do it in one line, you should be able to do:
Code: [Select]START "" "C:\Program Files\Lavasoft\Ad-Aware SE Personal\Ad-Aware.exe"



Discussion

No Comment Found