Skip to content

Instantly share code, notes, and snippets.

View m-d-johnson's full-sized avatar
💭
learning Go, C++, Python stuff

Mike Johnson m-d-johnson

💭
learning Go, C++, Python stuff
  • Somewhere in the South-East of the UK
  • 22:53 (UTC +01:00)
View GitHub Profile
@zaccb
zaccb / install-choco-script.bat
Last active December 10, 2023 08:54
Chocolatey install script
:: Install choco .exe and add choco to PATH
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: Install all the packages
:::: Browsers
choco install googlechrome -fy
choco install firefox -fy
:::: Text editors / IDEs
choco install atom -fy