I write in a .bat FILE
call "c:\my path\myprog.exe"
But dos says call not a command ?!!
My question is not about cmd prompt but BATCH file.
feedback
|
|
Call is not for running other programs like that, it is strictly for calling other batch files. You probably want e.g. start calc.exe "C:\Stuff\Program.exe" | |||||
feedback
|