1.

Solve : Starting from .bat with spaces in filename?

Answer»

How can I start an application from a batch FILE when the NAME of the app INCLUDES spaces - for example, to start "run me.exe".
If I enclose the command line in quotes the application will start, but the batch file hangs at that point and won't continue until I close the app I just started.
I can't rename the application, as it is called from other programs.

Thanks in advance!
Doc
If it is necessary to use quotes for the file name, you must include quotes for the title field:

Code: [Select]start "" "run me.exe"

Good luck.
It worked PERFECTLY! Thanks!!



Discussion

No Comment Found