web-dev-qa-db-ja.com

ShellExecuteによって呼び出されたexeの戻り値を取得する方法

Shellexecute関数によって呼び出されるexeの戻り値を取得する方法。

ShellExecute(NULL, NULL, TEXT ( ".\\dpinstx86.exe" ), NULL, NULL, SW_SHOWNORMAL);

上記の例では、「dpinstx86.exe」の戻り値が必要です。

14
2vision2

代わりに ShellExecuteEx を使用してプロセスハンドルを取得し、 GetExitCodeProcess を使用して終了コードを取得します。

SHELLEXECUTEINFO ShExecInfo = {0};
ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
ShExecInfo.hwnd = NULL;
ShExecInfo.lpVerb = NULL;
ShExecInfo.lpFile = "c:\\MyProgram.exe";        
ShExecInfo.lpParameters = "";   
ShExecInfo.lpDirectory = NULL;
ShExecInfo.nShow = SW_SHOW;
ShExecInfo.hInstApp = NULL; 
ShellExecuteEx(&ShExecInfo);
WaitForSingleObject(ShExecInfo.hProcess,INFINITE);
21
kol