I tried to search a lot but couldn't find any answer. I have a windows command script file (anySoftware.cmd) which I'm trying to open it by a batch file.
I tried:
start "C:\myPath\anySoftware.cmd"
And:
start cmd.exe "C:\myPath\anySoftware.cmd"
And:
start anySoftware.cmd "C:\myPath"
All is not working.
Appreciate your help! Thanks!
"C:\myPath\anySoftware.cmd"STARTcommand. Regardless of that the only reason you would need to use theSTARTcommand is if you were running multiple scripts in parallel. Otherwise you can just define the path to the batch file and call it good. If you need control passed back to the parent batch file then you need to use theCALLcommand.CALL "C:\myPath\anySoftware.cmd"