Common Commands for scoop

  • Install a package: scoop install <package>
  • Update a package: scoop update <package>
  • Uninstall a package: scoop uninstall <package>
  • Search for a package: scoop search <package>
  • List installed packages: scoop list
  • Update all installed packages: scoop update --all
  • Update Scoop: scoop update
  • View package information: scoop info <package>
  • List all buckets: scoop bucket list
  • Add a bucket: scoop bucket add <bucket>
  • Remove a bucket: scoop bucket remove <bucket>
  • Clean up old versions of software (keep current version): scoop cleanup *
  • Clear download cache for a package: scoop cache rm <package>
  • Clear all download caches: scoop cache rm *
  • One-click cleanup of old versions and clear all caches: scoop cleanup * && scoop cache rm *
  • View old versions that can be cleaned: scoop cleanup --dry-run *
  • View cache contents: scoop cache list