Scoop – Minimalist Package Installer for Windows
Sometimes installing a tool on Windows takes more time than using it. Scoop changes that. It’s not trying to be fancy — just a simple way to grab binaries, unpack them, and make them available in your terminal. No pop-ups. No wizards. No admin prompts.
You open PowerShell, run one line, and suddenly curl, jq, or ffmpeg are just there. Works the same on a new laptop, a sandbox VM, or inside a CI runner.
It’s built in PowerShell, but you won’t even notice. Everything it does — fetching packages, managing versions, setting up shims — happens quietly in the background.
How people use it
Mostly for scripts. Some write dotfiles. Others use it to rebuild developer setups in 5 minutes. Teams create custom buckets for in-house tools. No need for MSI packages or dragging .exe installers through group policy.
The installs land in your user folder. Each app gets its own space. Shims — small redirectors — make the commands available on PATH. It never asks for elevation unless something really needs it.
You want Git? scoop install git. Need it in an air-gapped VM? Mirror a bucket. Repeatable. Fast.
It just works
No GUI. No desktop icons. And no guessing what it did to the system — because it didn’t do anything. It downloads a zip, extracts it, links the executable. That’s all. Nothing breaks. Nothing gets stuck in the registry. No cleanup needed.
The config is local. The state is transparent. You can uninstall anything with a single line. You know exactly where every file is.
Real benefits
– Works without admin rights
– Keeps software isolated
– Easy to track what was installed and where
– Buckets are just Git repos — you can fork them
– It doesn’t fight Windows, it just skips the noise
Some quick facts
– Works on Windows 10 and 11
– Needs PowerShell 5.1 or later
– Default path: %USERPROFILE%scoop
– License: MIT
– Project: https://scoop.sh
– Latest version: 0.2.8 (mid 2025)
Setup?
Just this:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh | iex
Then:
scoop install grep
scoop install python
scoop bucket add extras
If you’re scripting Windows from scratch, it’s probably already in your script.
And a few notes
It doesn’t do everything. GUI apps work — but they’re not its strength. You’ll need Git for extra buckets. It won’t run in CMD. Some antivirus tools block the shims — false positives, mostly.
But it does what it’s meant to do. And it does it fast.