Commit 71d5e6f4 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

appwiz.cpl: Don't use SEE_MASK_NO_CONSOLE to run installers.

parent 9e0971e3
......@@ -477,7 +477,7 @@ static void InstallProgram(HWND hWnd)
sei.cbSize = sizeof(sei);
sei.lpVerb = openW;
sei.nShow = SW_SHOWDEFAULT;
sei.fMask = SEE_MASK_NO_CONSOLE;
sei.fMask = 0;
sei.lpFile = ofn.lpstrFile;
ShellExecuteExW(&sei);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment