User Tip #180: Command Interpreter |
Hits: Failed to execute CGI : Win32 Error Code = 3
|
|
Had the experience of using the run command to execute a command and the command shell disappears after executing your command. And you can't see your results. You can simply use two steps.
- Use the run command to open the command shell by typing cmd
- Execute your command oriented program from the command shell, for example ipconfig
Or you could do it in one step from the run command.
cmd /k ipconfig
This /k says to execute the command and leave the window open.