I am trying to execute command from Windows CMD
cmd /c "timeout 3 > nul & start /min C:\Users\Me\Documents\Path with extra spaces\myapp.exe"
Since path contain spaces I would need to place quotes around it in order to specify correct location. I have tried number of ways so far(extra double quotes "", escapes ^), non of them worked yet. Like this:
cmd /c "timeout 3 > nul & start /min """C:\Users\Me\Documents\Path with extra spaces\myapp.exe""""
Command have to be run exactly from CMD.