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

This commit is contained in:
James Hawkins 2007-05-09 00:52:40 -05:00 committed by Alexandre Julliard
parent 21dce1d02d
commit 5b8bad7518
1 changed files with 2 additions and 1 deletions

View File

@ -833,7 +833,8 @@ int main(int argc, char **argv)
}
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;
}