We have now been using the built-in package manager based on PowerShellGet. In the previous book called "Microsoft Exchange Server PowerShell Cookbook - Third Edition", we also used Chocolatey, where we can install third-party rich applications.
We'll take a look at how we can utilize chocolatey with Windows 2016 Server and Exchange 2016:
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex choco upgrade chocolatey choco install notepadplusplus.install choco upgrade notepadplusplus.install choco uninstall notepadplusplus.install choco install 7zip.install choco upgrade 7zip.install choco uninstall 7zip.install
In the preceding examples, we start by installing chocolatey. The second cmdlet is used for upgrading the ...