vote up 0 vote down star

what parameters should i use to start a console app minimized or hidden?

is this possible without using a 3rd party program?

with a batch file

flag

1 Answer

vote up 5 vote down check
start /min c:\windows\cmd.exe

Then you can pass whatever parameters to cmd.exe you need, for example:

To process a command then close:

start /min c:\windows\cmd.exe /c dir

To process a command but stay open:

start /min c:\windows\cmd.exe /k dir
link|flag

Your Answer

Get an OpenID
or

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