Scoop
Scoop is a command-line installer and makes it easy to install thousands of applications on the command line.
We'll be using Scoop to install some of the development tools we'll need.
Installation
To install Scoop, run the following command in PowerShell:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-ExpressionUsage & Commands
scoop install
To install an app, run the following command in PowerShell:
scoop install 7zipscoop update
To update an app, run the following command in PowerShell:
scoop update 7zipTo update all apps, run the following command in PowerShell:
scoop update *I use this command frequently to update all apps.
scoop uninstall
To uninstall an app, run the following command in PowerShell:
scoop uninstall 7zipscoop list
To list all installed apps, run the following command in PowerShell:
scoop listscoop bucket
Scoop has a built-in bucket system that allows you to install apps from a variety of sources.
scoop bucket add
To add a bucket, run the following command in PowerShell:
scoop bucket add <extras>
# Add extras bucket
scoop bucket add extrasView scoop docs to see all available buckets.