This is the program I am trying to launch from command line (Star Guard)
I opened a new command prompt process in this directory and am trying to start the Star Guard application with command line(so I can pass in command line arguments later).
However when I do so, I don't end up launching the program but I do end up launching a new command prompt process in the same directory.(output shown below) The program launches fine when I start it normally(GUI click)
Does anyone know what the issue is? I first did the ls(OSx) equivalent in Windows to make sure I had the right file path for the executable. I then used the start command to start the program along with enclosing the executable path in quotation marks to account of the spaces.
The syntax of the
start
command is unique, not to mention daft. If the first argument is in quotes it is interpreted as a window title.In this case, you don't actually need to use
start
at all, you could just sayor
If you want to use
start
, perhaps because you want to specify/wait
for a GUI application or because you want to launch a console application in a new window, you have to include the title argument:(The title argument doesn't need to actually specify a title, it just needs to be present.)