← All open source projects

Scoop

ScoopInstaller/Scoop

Scoop is a command-line application installer for Windows.

Forks 1,527
Language PowerShell
License NOASSERTION
Synced 2026-06-27

What It Is

Scoop is a command-line installer for Windows applications. It is useful for people who want to assemble a working environment with repeatable commands.

The project tries to remove common Windows installation friction: UAC prompts, graphical wizards, unexpected PATH changes, and uninstall side effects.

What Is Inside

Scoop installs applications from manifests. A manifest describes where to download an archive, how to verify it, and which executables should become available.

The ecosystem is built around buckets, which are collections of manifests. There are known official and third-party buckets for different kinds of applications.

How People Use It

A user installs Scoop, then adds git, curl, 7zip, grep, language runtimes, and other tools with commands. That is convenient after reinstalling Windows or setting up a new machine.

For authors of small Windows utilities, Scoop can be an alternative to a heavy installer: a zip archive and a correct JSON manifest can be enough.

Example

PowerShell syntax is shown as plain text. The example demonstrates repeatable installation of a basic tool set.

Repeatable Install

The fragment shows how one command installs a basic set of command-line tools.

Language: Plain text
scoop install 7zip git openssh curl grep sed less

Strengths And Limits

Scoop’s strength is cleanliness and automation. Tools are installed predictably, and environments are easier to describe in documentation or scripts.

The limitation is Windows focus and manifest quality. If a package is outdated or an application needs complex system integration, installation may require manual checking.

Project Context

Scoop is maintained in the ScoopInstaller/Scoop repository; its public project history starts on 2013-05-11. GitHub reports the primary language as PowerShell, and the license as NOASSERTION. The project also has a dedicated site: https://scoop.sh.

For a catalog page, this context matters because the reader sees a real project with an owner, license, technical base, and public change history rather than an abstract name.