diff --git a/src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs b/src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs index 21b1869678ad..dab0deb92e35 100644 --- a/src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs +++ b/src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs @@ -30,7 +30,7 @@ Vital="yes" InstallCondition="(NativeMachine="$(var.NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")" InstallCommand="/quiet /norestart" - RepairCommand="/quiet /repair" + RepairCommand="/quiet /norestart /repair" Permanent="yes" DetectCondition="DotNetRedistLtsProductVersion_arm64 = v$(var.DotNetRedistLtsInstallerProductVersionarm64)"> @@ -42,8 +42,8 @@ Vital="yes" InstallCondition="VersionNT64 AND NOT (NativeMachine="$(var.NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")" InstallCommand="/quiet /norestart" - RepairCommand="/quiet /repair" - UninstallCommand="/quiet /uninstall" + RepairCommand="/quiet /norestart /repair" + UninstallCommand="/quiet /norestart /uninstall" DetectCondition="DotNetRedistLtsProductVersion_x64 = v$(var.DotNetRedistLtsInstallerProductVersionx64)"> @@ -54,8 +54,8 @@ Vital="yes" InstallCondition="(NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0") AND (NOT OPT_NO_X86 OR OPT_NO_X86="0")" InstallCommand="/quiet /norestart" - RepairCommand="/quiet /repair" - UninstallCommand="/quiet /uninstall" + RepairCommand="/quiet /norestart /repair" + UninstallCommand="/quiet /norestart /uninstall" DetectCondition="DotNetRedistLtsProductVersion_x86 = v$(var.DotNetRedistLtsInstallerProductVersionx86)"> diff --git a/src/Installers/Windows/WindowsHostingBundle/SharedFramework.wxs b/src/Installers/Windows/WindowsHostingBundle/SharedFramework.wxs index a53bdaf2fc0c..7cd6db76c9fb 100644 --- a/src/Installers/Windows/WindowsHostingBundle/SharedFramework.wxs +++ b/src/Installers/Windows/WindowsHostingBundle/SharedFramework.wxs @@ -30,7 +30,7 @@ Vital="yes" InstallCondition="(NativeMachine="$(var.NativeMachine_arm64)") AND (NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX="0")" InstallCommand="/quiet /norestart" - RepairCommand="/quiet /repair" + RepairCommand="/quiet /norestart /repair" Permanent="yes" DetectCondition="SharedFxRedistProductVersion_arm64 = v$(var.SharedFxInstallerProductVersionarm64)"> @@ -42,8 +42,8 @@ Vital="yes" InstallCondition="VersionNT64 AND NOT (NativeMachine="$(var.NativeMachine_arm64)") AND (NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX="0")" InstallCommand="/quiet /norestart" - RepairCommand="/quiet /repair" - UninstallCommand="/quiet /uninstall" + RepairCommand="/quiet /norestart /repair" + UninstallCommand="/quiet /norestart /uninstall" DetectCondition="SharedFxRedistProductVersion_x64 = v$(var.SharedFxInstallerProductVersionx64)"> @@ -54,8 +54,8 @@ Vital="yes" InstallCondition="(NOT OPT_NO_SHAREDFX OR OPT_NO_SHAREDFX="0") AND (NOT OPT_NO_X86 OR OPT_NO_X86="0")" InstallCommand="/quiet /norestart" - RepairCommand="/quiet /repair" - UninstallCommand="/quiet /uninstall" + RepairCommand="/quiet /norestart /repair" + UninstallCommand="/quiet /norestart /uninstall" DetectCondition="SharedFxRedistProductVersion_x86 = v$(var.SharedFxInstallerProductVersionx86)">