Here’s a quick reference for returning customers:

# installing stuff
scoop install <program name>

# removing stuff
scoop uninstall <program name>

# updating all the stuff
scoop update *

# update single stuff
scoop update <program name>

# add a bucket / repository
scoop bucket add <bucket name>

# searching for stuff
scoop search <search term>
# keep in mind that scoop's search is very slow

For more things look in the wiki or in the wiki’s faq.

Now here’s a list of things that people who don’t use cmd get confused about:

Installation (on a fresh system)

Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iwr -useb get.scoop.sh | iex

Some more things explained

Why scoop at all

Scoop is a package manager. These are the primary way you install software on Linux. The reason package managers are awesome, is because it’s like an app store in the sense that it’s one central place to install all your software, but without the downsides of an actual app store.

If you develop your own software, you can write a scoop install script for it, and create a pull request on GitHub. This way basically anyone can add software into scoop, but it’s still moderated better than for example wikipedia.

Scoop also has more open source software, which is better (most of the time). This means you’re more likely to get ‘better software’ like 7-zip instead of (bad) (paid) software like winrar or winzip.

Scoop also uses powershell scripts to install software which means you won’t have to click through installers, or watch out for sneaky buttons that also install some weird toolbar in your browser.

Buckets

Buckets are a collection of similar programs. The way these are managed is through something called a repository. This is just a central place for multiple people to view and collaborate on scoop at once.

Buckets you’ll probably want to add are extras, nonportable, games, and java.

By adding a bucket you’re not actually installing any software, but scoop will check for updates on that bucket.

If you want to for example install java using scoop, you’ll first have to add the java bucket by running scoop bucket add java in order for scoop to be able to find the openjdk package. Then you can run scoop install openjdk, and then you’ll have java installed.

Brave (browser)

Because the default brave browser in scoop isn’t updated, I use the everonline repo. Here’s how to do that:

scoop bucket add everonline https://github.com/everonline/brave.git
scoop install everonline/brave

Awesome software

Here’s a list of the software I use pretty much every day, and some of it is also available for windows using scoop!