How to hide cmd.exe console?
Posted
by karikari
on Stack Overflow
See other posts from Stack Overflow
or by karikari
Published on 2010-04-30T01:18:12Z
Indexed on
2010/04/30
1:27 UTC
Read the original article
Hit count: 460
cmd.exe
|internet-explorer
I put this below code inside my *.dll for Internet Explorer.
FILE *child = _popen("java -jar c:\\simmetrics.jar c:\\chtml.txt c:\\thtml.txt > c:\\output.txt", "r");
fclose(child);
My problem is, when I run my Internet Explorer, the will be a cmd.exe console open too. I don't want the console to suddenly appear when I run my browser. How can I avoid this or hide it or not to execute it at all)?
© Stack Overflow or respective owner