Skip to content

Commit

Permalink
Suppress reboot by default on msiexec based installers (#2499)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardog authored Sep 15, 2022
1 parent 4cd4cc4 commit fbb11c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AppInstallerCommonCore/Manifest/ManifestCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -546,8 +546,8 @@ namespace AppInstaller::Manifest
case InstallerTypeEnum::Msi:
return
{
{InstallerSwitchType::Silent, ManifestInstaller::string_t("/quiet")},
{InstallerSwitchType::SilentWithProgress, ManifestInstaller::string_t("/passive")},
{InstallerSwitchType::Silent, ManifestInstaller::string_t("/quiet /norestart")},
{InstallerSwitchType::SilentWithProgress, ManifestInstaller::string_t("/passive /norestart")},
{InstallerSwitchType::Log, ManifestInstaller::string_t("/log \"" + std::string(ARG_TOKEN_LOGPATH) + "\"")},
{InstallerSwitchType::InstallLocation, ManifestInstaller::string_t("TARGETDIR=\"" + std::string(ARG_TOKEN_INSTALLPATH) + "\"")}
};
Expand Down

0 comments on commit fbb11c1

Please sign in to comment.