ShellExecuteEx调用第三方程序

  调用第三方程序有很多方法, 包括system , WinExec , CreateProcess, ShellExecute, ShellExecuteEx。对比这几个启动进程的函数, 总结下来功能完善而且好用的就是

ShellExecuteEx函数了。 这个函数不仅可以传入参数到第三方而且能够传回进程句柄用于操作, 比如等待第三方程序执行完毕。 CreateProcess也可以做到, 但是调用UAC

提权界面CreateProcess是没有的。

DWORD ShellRun(CString csExe, CString csParam,DWORD nShow)
{
	SHELLEXECUTEINFO ShExecInfo;
	ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
	ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS ;
	ShExecInfo.hwnd = NULL;
	ShExecInfo.lpVerb = NULL;
	ShExecInfo.lpFile = csExe; //can be a file as well
	ShExecInfo.lpParameters = csParam; 
	ShExecInfo.lpDirectory = NULL;
	ShExecInfo.nShow = nShow;
	ShExecInfo.hInstApp = NULL; 
	BOOL ret = ShellExecuteEx(&ShExecInfo);
	WaitForSingleObject(ShExecInfo.hProcess, INFINITE);
	DWORD dwCode=0;
	GetExitCodeProcess(ShExecInfo.hProcess, &dwCode);
	CloseHandle(ShExecInfo.hProcess);
	return dwCode;
}

另外ShellExecuteEx执行cmd命令的时候, 命令行参数要加入/c 来让命令行执行完成后关闭自身。否则命令行进程会一直存在, WaitForSingleObject会一直等待。

比如: ShellRun(L"cmd.exe", L"/c sc start UlogReport"); 启动一个服务。

你可能感兴趣的:(WIN32)