Merge pull request #8397 from Icinga/docs/windows-install-netfx3

docs: better instructions for installing wixtoolset on Windows
This commit is contained in:
Alexander Aleksandrovič Klimov 2020-10-28 13:30:14 +01:00 committed by GitHub
commit 78a94219aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -1961,9 +1961,11 @@ CMake uses CPack and NSIS to create the setup executable including all binaries
in addition to setup dialogues and configuration. Therefore well need to install [NSIS](http://nsis.sourceforge.net/Download)
first.
We also need to install the Windows Installer XML (WIX) toolset.
We also need to install the Windows Installer XML (WIX) toolset. This has .NET 3.5 as a dependency which might need a
reboot of the system which is not handled properly by Chocolatey. Therefore install it first and reboot when asked.
```
Enable-WindowsOptionalFeature -FeatureName "NetFx3" -Online
choco install -y wixtoolset
```