Always run MSI with full UI.
authoralex-z <blackslayer4@gmail.com>
Tue, 2 Aug 2022 09:25:58 +0000 (12:25 +0300)
committerallexzander <allexzander@users.noreply.github.com>
Tue, 2 Aug 2022 12:27:01 +0000 (15:27 +0300)
Signed-off-by: alex-z <blackslayer4@gmail.com>
src/gui/updater/ocupdater.cpp

index 102c7fcbbedddef4a5c88ce29ac50c4e3f25cec7..6c056024f6cf59476399b737c09ba0562b503650 100644 (file)
@@ -222,7 +222,7 @@ void OCUpdater::slotStartInstaller()
         };
 
         QString msiLogFile = cfg.configPath() + "msi.log";
-        QString command = QString("&{msiexec /norestart /passive /i '%1' /L*V '%2'| Out-Null ; &'%3'}")
+        QString command = QString("&{msiexec /i '%1' /L*V '%2'| Out-Null ; &'%3'}")
              .arg(preparePathForPowershell(updateFile))
              .arg(preparePathForPowershell(msiLogFile))
              .arg(preparePathForPowershell(QCoreApplication::applicationFilePath()));