I am trying to create a batch script that opens a program. I am doing some testing and I can\'t figure this out:
If I run CMD.exe and input start /d \"C:\\wamp\" w
start /d \"C:\\wamp\" w
Because the start program's syntax expect the window title as its first quoted argument. (see start /?). You can supply an empty string, however:
start /?
start "" "C:\wamp\wampmanager.exe"
or, if you don't need quotes to mask parts of the path, just leave them out altogether:
start C:\wamp\wampmanager.exe