Commit 5b8bad75 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msiexec: /quiet is the same options as /qn.

parent 21dce1d0
...@@ -833,7 +833,8 @@ int main(int argc, char **argv) ...@@ -833,7 +833,8 @@ int main(int argc, char **argv)
} }
else if(msi_option_prefix(argvW[i], "q")) else if(msi_option_prefix(argvW[i], "q"))
{ {
if(lstrlenW(argvW[i]) == 2 || msi_strequal(argvW[i]+2, "n")) if(lstrlenW(argvW[i]) == 2 || msi_strequal(argvW[i]+2, "n") ||
msi_strequal(argvW[i] + 2, "uiet"))
{ {
InstallUILevel = INSTALLUILEVEL_NONE; InstallUILevel = INSTALLUILEVEL_NONE;
} }
......
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