Programatically using CMD in C - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T11:40:30Zhttp://stackoverflow.com/feeds/question/717391http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/717391/programatically-using-cmd-in-c0Programatically using CMD in Cdaxhttp://stackoverflow.com/users/871142009-04-04T16:53:04Z2009-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#7174036Answer by Richard for Programatically using CMD in CRichardhttp://stackoverflow.com/users/673922009-04-04T16:57:17Z2009-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#7174092Answer by qrdl for Programatically using CMD in Cqrdlhttp://stackoverflow.com/users/284942009-04-04T17:00:15Z2009-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#7174490Answer by Vardhan Varma for Programatically using CMD in CVardhan Varmahttp://stackoverflow.com/users/109582009-04-04T17:25:11Z2009-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#7175490Answer by nolle for Programatically using CMD in Cnollehttp://stackoverflow.com/users/02009-04-04T18:15:39Z2009-04-04T18:15:39Z<p>Never use system() (not professional, crappy)<br />
Use Win32 net apis .<br />
See the source code of netstat.</p>