https://github.com/lukesampson/scoop/wiki/Quick-Start
Make sure you have allowed PowerShell to execute local scripts
set-executionpolicy remotesigned -scope currentuser
Installing Scoop to Custom Directory
$env:SCOOP='D:\scoop'
[environment]::setEnvironmentVariable('SCOOP',$env:SCOOP,'User')
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
scoop bucket add echo https://github.com/echoiron/echo-scoop
scoop install echo/app_name
# e.g.
scoop install echo/fscapture
scoop bucket rm *
scoop update
scoop update *
scoop install echo/notepad4
scoop install 7zip git --global
scoop install aria2 curl grep sed less touch
scoop install [email protected]
scoop install wechat -f
scoop uninstall discord -p
scoop cache rm *
scoop cleanup *
- powershell
scoop bucket add main ;`
scoop bucket add extras ;`
scoop bucket add echo https://github.com/echoiron/echo-scoop ;`
scoop bucket add dodorz https://github.com/dodorz/scoop ;`
scoop bucket add dorado https://github.com/chawyehsu/dorado
- dos
scoop bucket add main & ^
scoop bucket add extras & ^
scoop bucket add echo https://github.com/echoiron/echo-scoop & ^
scoop bucket add dodorz https://github.com/dodorz/scoop & ^
scoop bucket add dorado https://github.com/chawyehsu/dorado