appwiz.cpl: Don't use SEE_MASK_NO_CONSOLE to run installers.
This commit is contained in:
parent
9e0971e374
commit
71d5e6f4a6
|
@ -477,7 +477,7 @@ static void InstallProgram(HWND hWnd)
|
||||||
sei.cbSize = sizeof(sei);
|
sei.cbSize = sizeof(sei);
|
||||||
sei.lpVerb = openW;
|
sei.lpVerb = openW;
|
||||||
sei.nShow = SW_SHOWDEFAULT;
|
sei.nShow = SW_SHOWDEFAULT;
|
||||||
sei.fMask = SEE_MASK_NO_CONSOLE;
|
sei.fMask = 0;
|
||||||
sei.lpFile = ofn.lpstrFile;
|
sei.lpFile = ofn.lpstrFile;
|
||||||
|
|
||||||
ShellExecuteExW(&sei);
|
ShellExecuteExW(&sei);
|
||||||
|
|
Loading…
Reference in New Issue