J'utilise CreateProcess pour créer un processus cmd.exe auquel est passé un paramètre qu'il exécute et quitte, cela fait apparaître l'invite de commande à l'écran.
J'ai essayé d'éviter cela en définissant STARTUPINFO struct wShowWindow sur SW_HIDE mais ce paramètre semble affecter la fenêtre d'appel, pas la fenêtre du processus qui est exécuté.
Existe-t-il de toute façon que vous pouvez utiliser createprocess pour lancer un programme masqué?
Quelle est également la méthode standard appropriée de winapi pour obtenir des variables d'environnement?
définissez STARTF_USESHOWWINDOW dans dwFlags
par sharptooth
Si c'est juste une application console, vous pouvez également utiliser le CREATE_NO_WINDOW
flag dans le cadre de l'appel CreateProcess
lui-même, par exemple.
CreateProcess(NULL, lpszCommandLine, NULL, NULL, FALSE,
CREATE_NO_WINDOW, NULL, NULL, &si, &pi);
Voir aussi cette page pour plus d'informations sur les variables d'environnement.
Le lien suivant ici décrit comment créer la fenêtre en silence:
DWORD RunSilent(char* strFunct, char* strstrParams)
{
STARTUPINFO StartupInfo;
PROCESS_INFORMATION ProcessInfo;
char Args[4096];
char *pEnvCMD = NULL;
char *pDefaultCMD = "CMD.EXE";
ULONG rc;
memset(&StartupInfo, 0, sizeof(StartupInfo));
StartupInfo.cb = sizeof(STARTUPINFO);
StartupInfo.dwFlags = STARTF_USESHOWWINDOW;
StartupInfo.wShowWindow = SW_HIDE;
Args[0] = 0;
pEnvCMD = getenv("COMSPEC");
if(pEnvCMD){
strcpy(Args, pEnvCMD);
}
else{
strcpy(Args, pDefaultCMD);
}
// "/c" option - Do the command then terminate the command window
strcat(Args, " /c ");
//the application you would like to run from the command window
strcat(Args, strFunct);
strcat(Args, " ");
//the parameters passed to the application being run from the command window.
strcat(Args, strstrParams);
if (!CreateProcess( NULL, Args, NULL, NULL, FALSE,
CREATE_NEW_CONSOLE,
NULL,
NULL,
&StartupInfo,
&ProcessInfo))
{
return GetLastError();
}
WaitForSingleObject(ProcessInfo.hProcess, INFINITE);
if(!GetExitCodeProcess(ProcessInfo.hProcess, &rc))
rc = 0;
CloseHandle(ProcessInfo.hThread);
CloseHandle(ProcessInfo.hProcess);
return rc;
}
Je pense que getenv et setenv sont tous d'accord? Je ne sais pas de quoi vous parlez à cet égard.
Cela peut être exagéré pour vos besoins, mais vous pouvez accrocher l'API ShowWindow et ne jamais afficher de fenêtres pour ce processus