So I have this batch file
START "%userprofile%\Desktop\Rebuild\JayBotWatcher.exe"
CALL "%userprofile%\Desktop\Rebuild\InventoryExporter.exe" "%userprofile%\Desktop\Rebuild\JayBot.exe"
The second line works fine, but the first fails for some reason and doesn't launch the .exe.
If I remove the quotes it works fine on PCs with no spaces in their username, but spaces in the username kill it on other pcs.
What am I missing?
start "" "your command"– LotPings Jul 15 '17 at 06:45