Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanonsoftware/252d1746fb978c1a1753e79f74730c91 to your computer and use it in GitHub Desktop.
Save juanonsoftware/252d1746fb978c1a1753e79f74730c91 to your computer and use it in GitHub Desktop.
Common and Must have software for a Windows server installation script via Chocolatey. Just need to run this script in a Powershell console (with Administrator right)
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# 7Zip - https://chocolatey.org/packages/7zip
choco install 7zip -y
# Notepad++ - https://chocolatey.org/packages/notepadplusplus.install
choco install notepadplusplus.install -y
# TreeSize Free https://chocolatey.org/packages/treesizefree
choco install treesizefree -y
# Web Browser - should be Chromium
choco install chromium -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment