I am trying to run a program from cmd, but not as a child of the prompt. I have tried calling the program directly: program
, but this starts it as a child process. I have tried start "" program
, but this also starts it as a child process. Is this possible? I don't want the program to close when the prompt is closed.
Edit: This is not a duplicate question - start
doesn't work in this case. I don't know enough to explain better, but some things to note:
- The program in question doesn't open a new window
- The path to the program contains spaces, so requires inverted commas. However, the inverted commas seem to suggest to
start
that the argument is intended to be the name of the new command window. - I need to pass switches to the program, which makes things a bit more complicated