Skip to content

Scoop

ScoopInstaller/Scoop

Install

PowerShell
# 打开 PowerShell 远程权限
Set-ExecutionPolicy RemoteSigned -scope CurrentUser

# 自定义 Scoop 和 App 安装目录
$env:SCOOP='D:\Applications\Scoop'
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User')

# 安装 scoop
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
# or shorter
iwr -useb get.scoop.sh | iex

Command

Text Only
alias          Manage scoop aliases
bucket         Manage Scoop buckets
cache          Show or clear the download cache
checkup        Check for potential problems
cleanup        Cleanup apps by removing old versions
config         Get or set configuration values
create         Create a custom app manifest
depends        List dependencies for an app
export         Exports (an importable) list of installed apps
help           Show help for a command
hold           Hold an app to disable updates
home           Opens the app homepage
info           Display information about an app
install        Install apps
list           List installed apps
prefix         Returns the path to the specified app
reset          Reset an app to resolve conflicts
search         Search available apps
status         Show status and check for new app versions
unhold         Unhold an app to enable updates
uninstall      Uninstall an app
update         Update apps, or Scoop itself
virustotal     Look for app's hash on virustotal.com
which          Locate a shim/executable (similar to 'which' on Linux)
PowerShell
# bucket
## add bucket
scoop bucket add JetBrains https://github.com/Ash258/Scoop-JetBrains.git
## remove bucket
scoop bucket remove JetBrains
## iist bucket
scoop bucket list
Back to top