Skip to content

Instantly share code, notes, and snippets.

@SystemJargon
Last active July 14, 2022 07:28
Show Gist options
  • Select an option

  • Save SystemJargon/ccc98e5f09c9a62b051fb92401c19637 to your computer and use it in GitHub Desktop.

Select an option

Save SystemJargon/ccc98e5f09c9a62b051fb92401c19637 to your computer and use it in GitHub Desktop.

Chocolatey for Windows

Depending on the ExecutionPolicy set on your machine you can try this

Invoke-WebRequest https://chocolatey.org/install.ps1 -UseBasicParsing | Invoke-Expression

or if that fails try this

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'))

Basic Browser and Office install

choco install office365proplus firefox googlechrome -y

Upgrade Packages

choco upgrade all -y

List Installed Packages

choco list --local-only

List outdated packages

choco outdated

Example Install

choco install sysinternals keepass vlc treesizefree 7zip winscp putty filezilla notepadplusplus brave firefox git vscode chocolateygui

Example gaming install

choco install playnite lghub steam-client streamdeck

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment