Scoop - GradedJestRisk/windows-training GitHub Wiki
Works in Git Bash
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
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
Main in $HOME/scoop/apps/
scoop bucket add java
scoop install openjdk
java -version