Skip to content

Instantly share code, notes, and snippets.

@yonderbread
Created January 12, 2021 05:52
Show Gist options
  • Save yonderbread/bf10aa5d7da2cf9e038bd9016c3cb9cf to your computer and use it in GitHub Desktop.
Save yonderbread/bf10aa5d7da2cf9e038bd9016c3cb9cf to your computer and use it in GitHub Desktop.
Install GNU IceCat Windows build with Chocolatey
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