Skip to content

Commit

Permalink
[Installer]Install dotnet with /norestart (#16691)
Browse files Browse the repository at this point in the history
* Add norestart for dotnet

* Add norestart to spell-check

* Add quite back for dotnet
  • Loading branch information
franky920920 authored and jaimecbernardo committed Mar 4, 2022
1 parent b4250c1 commit a0bb3de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/actions/spell-check/expect.txt
Expand Up @@ -1446,6 +1446,7 @@ NOREMOVE
norename
NOREPEAT
NOREPOSITION
norestart
NORMALDISPLAY
NORMALUSER
Noronha
Expand Down
12 changes: 6 additions & 6 deletions installer/PowerToysSetup/PowerToys.wxs
Expand Up @@ -46,11 +46,11 @@
Id="DotnetRuntime"
DetectCondition="HasDotnet3122"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/1c14e24b-7f31-42dc-ba3c-83295a2d6f7e/41b93591162dfe556cc160ae44fbe75e/windowsdesktop-runtime-3.1.22-win-x64.exe"
InstallCommand="/install /quiet"
RepairCommand="/repair /passive"
InstallCommand="/install /quiet /norestart"
RepairCommand="/repair /passive /norestart"
Permanent="yes"
PerMachine="yes"
UninstallCommand="/uninstall /quiet">
UninstallCommand="/uninstall /quiet /norestart">
<ExitCode Value="1638" Behavior="success"/>
<RemotePayload
Description="Microsoft Windows Desktop Runtime - 3.1.22 (x64)"
Expand All @@ -65,11 +65,11 @@
Id="DotnetRuntime6"
DetectCondition="HasDotnet602"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/efa32b7a-6eec-4d97-9cdc-c7336a29a749/3df4296170397cf60884dae1be3d103b/windowsdesktop-runtime-6.0.2-win-x64.exe"
InstallCommand="/install /quiet"
RepairCommand="/repair /passive"
InstallCommand="/install /quiet /norestart"
RepairCommand="/repair /passive /norestart"
Permanent="yes"
PerMachine="yes"
UninstallCommand="/uninstall /quiet">
UninstallCommand="/uninstall /quiet /norestart">
<ExitCode Value="1638" Behavior="success"/>
<RemotePayload
Description="Microsoft Windows Desktop Runtime - 6.0.2 (x64)"
Expand Down

0 comments on commit a0bb3de

Please sign in to comment.