Programatically using CMD in C - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T11:40:30Z http://stackoverflow.com/feeds/question/717391 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/717391/programatically-using-cmd-in-c 0 Programatically using CMD in C dax http://stackoverflow.com/users/87114 2009-04-04T16:53:04Z 2009-04-04T19:36:39Z <p>How can I simulate these calls inside a program? Like say I want to find all the active connections. So I want to use netstat -a How could I use that without having to literally having a window open?</p> http://stackoverflow.com/questions/717391/programatically-using-cmd-in-c/717403#717403 6 Answer by Richard for Programatically using CMD in C Richard http://stackoverflow.com/users/67392 2009-04-04T16:57:17Z 2009-04-04T16:57:17Z <p>Use CreateProcess, redirecting the output.</p> <p>If the calling application is not a windows application there is no issue with a console window (because a console programming will, by default, inheirt its parent console).</p> <p>If the calling application is a windows application, set the right options passed to CreateProcess to default the console window that will be created to hidden.</p> http://stackoverflow.com/questions/717391/programatically-using-cmd-in-c/717409#717409 2 Answer by qrdl for Programatically using CMD in C qrdl http://stackoverflow.com/users/28494 2009-04-04T17:00:15Z 2009-04-04T17:00:15Z <p>There is <code>system()</code> library function you can use - I guess Windows has it as well because it is standard C function since C89.</p> http://stackoverflow.com/questions/717391/programatically-using-cmd-in-c/717449#717449 0 Answer by Vardhan Varma for Programatically using CMD in C Vardhan Varma http://stackoverflow.com/users/10958 2009-04-04T17:25:11Z 2009-04-04T17:25:11Z <p>You will have to use the "/B" option of 'start' command.</p> <p>cmd /C start "Title" /B netstat -i</p> <p>I'm assuming popping console is your main problem, and you a strategy of collecting the data. </p> http://stackoverflow.com/questions/717391/programatically-using-cmd-in-c/717549#717549 0 Answer by nolle for Programatically using CMD in C nolle http://stackoverflow.com/users/0 2009-04-04T18:15:39Z 2009-04-04T18:15:39Z <p>Never use system() (not professional, crappy)<br /> Use Win32 net apis .<br /> See the source code of netstat.</p>