Install Scoop via PowerShell
masterTo install Scoop, run the following commands from a regular (non-admin) PowerShell terminal. The first command sets the execution policy to allow running installation and management scripts, which is required by default Windows 10 settings.
Scoop installs to C:\Users\<YOUR USERNAME>\scoop by default.
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression