I want to run an executable as a foreground process. By this I mean I go to the shell (lets assume cmd
) and can launch the executable and remain attached to the console/stdout
of that application.
For example:
C:\APPS MyApp.exe
Normally cmd
will exit after this command. But I want to remain attached to it till the application exits. Not sure if this is possible in Windows.
Note:
I come from a Linux background, so some of the terminology might not be relevant here.