1. Installing Scoop#
You can install Scoop to the default directory (C:\Users<username>\scoop) using the following command:
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
or
iwr -useb get.scoop.sh | iex
If you encounter an error: Unable to run as administrator, follow these steps to resolve it:
iwr -useb get.scoop.sh -outfile 'install.ps1'
.\install.ps1 -RunAsAdmin