Skip to content

Instantly share code, notes, and snippets.

@dlwiii
Created March 30, 2022 15:40
Show Gist options
  • Save dlwiii/ba43e0c65af6ede7d5f6442fec8ff1d7 to your computer and use it in GitHub Desktop.
Save dlwiii/ba43e0c65af6ede7d5f6442fec8ff1d7 to your computer and use it in GitHub Desktop.
Chocolatey install script
# Install script for Dwilliams
# btw - need this on a new machine first
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
# Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
# to update all installed items, just do:
# choco upgrade all -y
ECHO Installing apps
ECHO Configure chocolatey
choco feature enable -n allowGlobalConfirmation
choco install dotnetfx
choco install dotnet-6.0-runtime
choco install googlechrome
#choco install microsoft-edge
choco install notepadplusplus
choco install 7zip
choco install wiztree
choco install everything
choco install rdcman
choco install kdiff3
# do not get lprun, dangit
choco install linqpad
choco install brave
# mysql requires restart after
choco install mysql.workbench
choco feature disable -n allowGlobalConfirmation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment