Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

"-k" functionality in Target of 4NT

The properties of an existing 4NT for the Target show

Target: "C:\Program Files\JPSoft\4NT8\4nt.exe" -k c:\startup\def.bat
Start in: "C:\Program Files\JPSoft\4NT8\4nt.exe"

Is there some documentation for the functionality of “-k”? Thanks for your help.
 
Possibly some versions accept startup options beginning with - as well as / -- but if so, I wouldn't depend on it continuing to future releases! Don't rely on undocumented behavior if there's an easy way not to.
 
I think /k is as old as command.com;)
Code:
C:\Temp >cmd /?
Starts a new instance of the Windows command interpreter
 
CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF]
    [[/S] [/C | /K] string]
 
/C      Carries out the command specified by string and then terminates
/K      Carries out the command specified by string but remains
 
Back
Top