shuji
shuji

Reputation: 7528

mingw-w64 How to stop console from showing up when opening an external application

I'm trying to write an application to open another and self close, so I don't need the console when the external application opens

This is what I've tried so far:

system("cmd.exe /c application.exe"); //console shows, application opens, console wait

system("start \"\" application.exe"); //console shows, application opens, console close

//console does not show but neither the application (I can see it in task manager)
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
si.cb           = sizeof(si);
si.dwFlags      = STARTF_USESHOWWINDOW;
si.wShowWindow  = SW_HIDE;
ZeroMemory(&pi, sizeof(pi));
CreateProcess(0, "application.exe", 0, 0, FALSE, 0, 0, 0, &si, &pi);

//console does not show but neither the application (I can see it in task manager)
WinExec("application.exe", SW_HIDE);

This is the way I compile:

g++ -o "launcher" "launcher.cpp" -mwindows

Upvotes: 0

Views: 814

Answers (1)

Logicrat
Logicrat

Reputation: 4468

This is some code that works for me to accomplish your goal:

// Declare and initialize process blocks
PROCESS_INFORMATION processInformation;
STARTUPINFO startupInfo;

memset(&processInformation, 0, sizeof(processInformation));
memset(&startupInfo, 0, sizeof(startupInfo));
startupInfo.cb = sizeof(startupInfo);

// Call the executable program
TCHAR cmd[] =  myCommandText;

int result = ::CreateProcess(NULL, cmd, NULL, NULL, FALSE, NORMAL_PRIORITY_CLASS|CREATE_NO_WINDOW, NULL, NULL, &startupInfo, &processInformation);

In this context, myCommandText is a console command

Upvotes: 1

Related Questions