• Stars
    star
    19,847
  • Rank 1,209 (Top 0.03 %)
  • Language
    PowerShell
  • License
    Other
  • Created almost 11 years ago
  • Updated 16 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A command-line installer for Windows.

Scoop

Features | Installation | Documentation


Code Size Repository size Scoop Core CI Tests Discord Chat Gitter Chat License

Scoop is a command-line installer for Windows.

What does Scoop do?

Scoop installs apps from the command line with a minimal amount of friction. It:

  • Eliminates User Account Control (UAC) prompt notifications.
  • Hides the graphical user interface (GUI) of wizard-style installers.
  • Prevents polluting the PATH environment variable. Normally, this variable gets cluttered as different apps are installed on the device.
  • Avoids unexpected side effects from installing and uninstalling apps.
  • Resolves and installs dependencies automatically.
  • Performs all the necessary steps to get an app to a working state.

Scoop is quite script-friendly. Your environment can become the way you like by using repeatable setups. For example:

scoop install sudo
sudo scoop install 7zip git openssh --global
scoop install aria2 curl grep sed less touch
scoop install python ruby go perl

If you have built software that you would like others to use, Scoop is an alternative to building an installer (like MSI or InnoSetup). You just need to compress your app to a .zip file and provide a JSON manifest that describes how to install it.

Installation

Run the following commands from a regular (non-admin) PowerShell terminal to install Scoop:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

Note: The first command makes your device allow running the installation and management scripts. This is necessary because Windows 10 client devices restrict execution of any PowerShell scripts by default.

It will install Scoop to its default location:

C:\Users\<YOUR USERNAME>\scoop

You can find the complete documentation about the installer, including advanced installation configurations, in ScoopInstaller/Install. Please create new issues there if you have questions about the installation.

Multi-connection downloads with aria2

Scoop can utilize aria2 to use multi-connection downloads. Simply install aria2 through Scoop and it will be used for all downloads afterward.

scoop install aria2

By default, scoop displays a warning when running scoop install or scoop update while aria2 is enabled. This warning can be suppressed by running scoop config aria2-warning-enabled false.

You can tweak the following aria2 settings with the scoop config command:

Inspiration

What sort of apps can Scoop install?

The apps that are most likely to get installed fine with Scoop are those referred to as "portable" apps. These apps are compressed files which can run standalone after being extracted. This type of apps does not produce side effects like changing the Windows Registry or placing files outside the app directory.

Scoop also supports installer files and their uninstallation methods. Likewise, it can handle single-file apps and PowerShell scripts. These do not even need to be compressed. See the runat package for an example: it is simply a GitHub gist.

Contribute to this project

If you would like to improve Scoop by adding features or fixing bugs, please read our Contributing Guide.

Support this project

If you find Scoop useful and would like to support the ongoing development and maintenance of this project, you can donate here:

Known application buckets

The following buckets are known to Scoop:

  • main - Default bucket which contains popular non-GUI apps.
  • extras - Apps that do not fit the main bucket's criteria.
  • games - Open-source and freeware video games and game-related tools.
  • nerd-fonts - Nerd Fonts.
  • nirsoft - A collection of over 250+ apps from Nirsoft.
  • sysinternals - The Sysinternals suite from Microsoft.
  • java - A collection of Java development kits (JDKs) and Java runtime engines (JREs), Java's virtual machine debugging tools and Java based runtime engines.
  • nonportable - Non-portable apps (may trigger UAC prompts).
  • php - Installers for most versions of PHP.
  • versions - Alternative versions of apps found in other buckets.

The main bucket is installed by default. You can make use of more buckets by typing:

scoop bucket add <name>

For example, to add the extras bucket, type:

scoop bucket add extras

You would be able to install apps from the extras bucket now.

Other application buckets

Many other application buckets hosted on GitHub can be found on ScoopSearch or via other search engines.

More Repositories

1

Extras

📦 The Extras bucket for Scoop.
PowerShell
1,701
star
2

Main

📦 The default bucket for Scoop.
PowerShell
1,509
star
3

Install

📥 Next-generation Scoop (un)installer
PowerShell
612
star
4

Java

📦 A bucket for Scoop, for Oracle Java, OpenJDK, Eclipse Temurin, IBM Semeru, Zulu, ojdkbuild, Amazon Corretto, BellSoft Liberica, SapMachine and Microsoft JDK.
PowerShell
233
star
5

Awesome

A curated list of awesome Scoop resources and more.
187
star
6

Versions

📦 A Scoop bucket for alternative versions of apps.
PowerShell
169
star
7

Nirsoft

📦 Bucket of almost all of the 280+ apps from Nirsoft.net. Migrated from MCOfficer/scoop-nirsoft with permission.
Python
82
star
8

BucketTemplate

Template Bucket for Scoop Installer
PowerShell
81
star
9

scoopinstaller.github.io

ScoopInstaller homepage and search engine
TypeScript
71
star
10

Shim

A Scoop helper program for shimming executables
C#
59
star
11

Nonportable

📦 Scoop bucket for non-portable applications.
PowerShell
48
star
12

PHP

📦 PHP Bucket for Scoop
PowerShell
34
star
13

Excavator

🕳️ This container runs the updating services for all scoop manifest repos (deprecated)
Dockerfile
24
star
14

GithubActions

Github Actions for Scoop buckets
PowerShell
22
star
15

Binary

🗄 Scoops mirror for binaries that are no longer available
PowerShell
16
star
16

GitCloner

A small helper script that clones a Git repository
PowerShell
13
star
17

Validator

A Scoop helper program for validating JSON files against a JSON Schema
C#
7
star
18

.github

Org-wide settings
3
star
19

scoopinstaller.github.io-indexer

Indexer to maintain Scoop applications index
C#
2
star
20

scoopinstaller-dev.github.io

Auto-generated development website from ScoopInstaller/scoopinstaller.github.io
HTML
1
star