Set up a new Windows machine with all your dev tools by running a script of scoop install commands.
Install command-line tools like Git, Node.js, and Python without admin prompts or system-wide registry changes.
Manage multiple versions of programming languages and tools side-by-side in isolated folders.
Scoop is a command-line package manager for Windows, think of it like an app store you control from a text terminal. The problem it solves is the usual Windows installation experience: clicking through wizard dialogs, accepting User Account Control (UAC) security prompts, and ending up with software scattered across your system in unpredictable ways. Scoop replaces all of that with a single typed command. When you run something like "scoop install git", Scoop downloads the app, extracts it to a consistent folder under your user profile, wires up the necessary shortcuts, and handles dependencies automatically, no admin rights needed and no UAC popups. Apps are organized into "buckets," which are curated collections. The default bucket covers popular command-line tools; additional buckets cover GUI apps, programming languages like PHP and Java, developer fonts, and more. Scoop is especially useful for developers and power users who want a reproducible setup they can script. Instead of manually installing a dozen tools, you write a list of "scoop install" commands and run them on any Windows machine. It is written in PowerShell and runs without elevated permissions in most cases.
Generated 2026-05-18 · Model: sonnet-4-6 · Verify against the repo before relying on details.