I was looking for a solution to starting my console (not Windows) application without the console window briefly popping up before hiding - I posted about it in the past here:
Having main() as your app's start point, using standard C++ libraries, will always generate a console window before starting the GUI window, when run on Windows. That is just how Windows works.
To create a conformant Windows GUI app (no console window) requires using the Windows libraries and defining your app's start with WinMain(). You can still use the C/C++ libraries as needed. User interaction is done differently with a GUI app, vs. a console app.
The easiest way to do the above is use an IDE that let's you choose your project type so the IDE sets up all the "behind the scenes" settings for you.
I personally know of two IDEs that create properly set Win32 API projects Visual Studio and Dev-C++. I use both, though Dev-C++ is no longer being updated and was outdated with its last version.
Thanks for the reply, but I'm set on keeping the app console and pretty sure my shell commands w/ _popen will spawn visible windows even as a Windows app.
In my first post I mentioned that the little hide.exe my program generates works well - I'm just curious as to why Windows wont start it with this registry entry.