Last active
February 24, 2021 06:54
-
-
Save infernalsirius/2820aae8888bcc308a3732d7be0a21de to your computer and use it in GitHub Desktop.
[Scoop installation script]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Installs in seconds | |
#Make sure PowerShell 5 (or later, include PowerShell Core) and .NET Framework 4.5 (or later) are installed. Then run: | |
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') | |
# or shorter | |
iwr -useb get.scoop.sh | iex | |
#Note: if you get an error you might need to change the execution policy (i.e. enable Powershell) with | |
Set-ExecutionPolicy RemoteSigned -scope CurrentUser |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment