12
votes
What does cmd /C mean?
/C Carries out the command specified by the string and then terminates
You can get all the cmd command line switches by typing cmd /?
…
3
votes
How do I recognize command-line parameters in my Delphi program?
You may wish to consider the FindCmdLineSwitch from the SysUtils unit.
function FindCmdLineSwitch(const SwitchValue:string):Boolean;
function FindC …
