Reputation: 39
I am trying to start a exe from batch file but not able to start exe ...
Here is bat
@echo off
start "C:\Program Files\Marketmaker\Marketmaker CFD-FX Français\MM5\iidownloader.exe"
@pause
Thanks in advance.
Upvotes: 1
Views: 172
Reputation: 11556
You could try using the short name:
@echo off
start "C:\Program Files\Marketmaker\Market~1\MM5\iidownloader.exe"
@pause
To check the correct short name, open a dos prompt and type:
dir /x "C:\Program Files\Marketmaker"
Upvotes: 1