Win32 programming hiding console window

If you’re writing a console program and you want to disconnect your program from the console it started with, then call FreeConsole. Ultimately, you probably won’t be satisfied with what that function really does, but that’s the literal answer to the question you asked.

If you’re writing a program that you never want to have a console in the first place, then configure your project so that it is not a console program. “Consoleness” is a property of the EXE file. The OS reads that setting and decides whether to allocate a console for your program before any of your code ever runs, so you can’t control it within the program. Sometimes a non-console program is called a “GUI program,” so you might look for a choice between “console” and “GUI” in the configuration options of your development environment. Setting it to GUI doesn’t require that you have any user interface at all, though. The setting merely controls whether your program starts with a console.

If you’re trying to write a program that can sometimes have a console and sometimes not, then please see an earlier question, Can one executable be both a console and GUI app?

Leave a Comment