Scoop - GradedJestRisk/windows-training GitHub Wiki

Scoop

Reference

Why Scoop over Chocolatey ?

Works in Git Bash

Install

Open a powershell

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

Test

scoop install aria2

If it fails, set the proxy

scoop config proxy currentuser@http://proxy:8080
scoop config rm proxy

Handful

General

  • check installed apps scoop list
  • add bucket (if not already added): scoop bucket add extras
  • update : scoop update
  • debug scoop config debug $true

Application

  • check if available and get buckets : scoop search $APPLICATION
  • install : scoop install $APPLICATION
  • update : scoop update $APPLICATION
  • uninstall : scoop uninstall $APPLICATION

Repositories

Main in $HOME/scoop/apps/

Java

scoop bucket add java
scoop install openjdk
java -version
⚠️ **GitHub.com Fallback** ⚠️