vote up 1 vote down star

When I run e.g. ipconfig using the Run command (windows key+R), once the program has executed it immediately closes the instance of the command line interface, is there any universal parameter I can add to:

  • ipconfig
  • nslookup
  • dir
  • etc...

to ensure that the results stay printed in the console window?

flag

1  
Unless you're using Win 3.1, it's not MSDOS in any way/shape/form. – Joe Jun 10 at 12:01
1  
nslookup is interactive anyway if you start it without parameters. – Johannes Rössel Jun 10 at 12:09

3 Answers

vote up 11 vote down check

Use cmd with the /k switch:

cmd /k ipconfig
link|flag
In case your curious from the help doc of cmd ... the /k parameter is the opposite of the /c parameter /C Carries out the command specified by string and then terminates /K Carries out the command specified by string but remains – tschaible Jun 10 at 11:09
vote up 6 vote down

There is also the ability to concatenate commands

& is used to just post multible commands in a line && will break if the last command wasn't successful

cmd /k ipconfig & pause & exit
link|flag
Cool! Thanks for the info =) – Blixt Jun 10 at 15:46
Even better, because it immediateley exits after a key stroke. – furtelwart Jun 24 at 11:43
vote up 3 vote down

Or you just execute "cmd" via the Run command, which will open a DOS prompt.
If you type "ipconfig" there, the command prompt remains open.

(ok, I admit: basically it's the same like "cmd /k ipconfig")

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.