Created
January 12, 2021 05:52
-
-
Save yonderbread/bf10aa5d7da2cf9e038bd9016c3cb9cf to your computer and use it in GitHub Desktop.
Install GNU IceCat Windows build with Chocolatey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "MAKE SURE TO RUN THIS AS ADMINISTRATOR!" | |
echo "Setting up execution policy rules and installing chocolatey..." | |
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
echo "Installing GNU IceCat" | |
choco install icecat | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment