必威体育Betway必威体育官网
当前位置:首页 > IT技术

ShellExecuteEx调用第三方程序

时间:2019-08-12 21:44:16来源:IT技术作者:seo实验室小编阅读:82次「手机版」
 

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; 
	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",SW_HIDE); 启动一个服务。

这个函数主要是在文件上执行一个函数,如果执行成功则返回一个非0值,否则返回一个0值;

通过ShExecInfo.lpParameters来传递exe文件的参数,通过属性ShExecInfo.nShow来控制程序窗口是否显示。

相关阅读

使用 ShellExecuteEx 显示文件属性

ShellExecuteEX MSDN SHELLEXECUTEINFO sei; ZeroMemory(&sei,sizeof(sei)); sei.cbSize = sizeof(sei); sei.lpFile = _T

分享到:

栏目导航

推荐阅读

热门阅读