我正在使用CreateProcess创建一个cmd.exe进程,该进程传递一个它执行并退出的参数,这会使命令提示符在屏幕上闪烁。
我试图通过将STARTUPINFO struct wShowWindow设置为SW_HIDE来避免这种情况,但这个参数似乎会影响调用窗口,而不是执行进程的窗口。
无论如何,您是否可以使用createprocess来启动隐藏在视图中的程序?
获取环境变量的正确winapi标准方法是什么?
答案 0 :(得分:54)
如果它只是一个控制台应用程序,您也可以使用CREATE_NO_WINDOW
标志作为CreateProcess
调用本身的一部分,例如
CreateProcess(NULL, lpszCommandLine, NULL, NULL, FALSE,
CREATE_NO_WINDOW, NULL, NULL, &si, &pi);
另外,有关环境变量的信息,请参阅this page。
答案 1 :(得分:10)
以下链接here描述了如何以静默方式创建窗口:
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;
}
我认为getenv和setenv都可以吗?我不确定你在这方面要问的是什么。
答案 2 :(得分:9)
在dwFlags
中设置STARTF_USESHOWWINDOW由sharptooth
答案 3 :(得分:0)
这可能对您的需求有些过分,但您可以挂钩ShowWindow API并且永远不会为该过程显示任何窗口