diff --git a/index.md b/index.md index 371664e57..5d423bb9b 100644 --- a/index.md +++ b/index.md @@ -2,6 +2,25 @@ layout: default --- +# Installs in seconds + +Make sure [PowerShell 5](https://aka.ms/wmf5download) (or later, include [PowerShell Core](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-windows?view=powershell-6)) +and [.NET Framework 4.5](https://www.microsoft.com/net/download) (or later) are installed. Then run: + +```powershell +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 + +```powershell +Set-ExecutionPolicy RemoteSigned -scope CurrentUser +``` + ### Scoop installs the tools you know and love ```shell @@ -36,22 +55,3 @@ Not sure whether you need 32-bit or 64-bit? Can’t remember that command yo
- -# Installs in seconds - -Make sure [PowerShell 5](https://aka.ms/wmf5download) (or later, include [PowerShell Core](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-windows?view=powershell-6)) -and [.NET Framework 4.5](https://www.microsoft.com/net/download) (or later) are installed. Then run: - -```powershell -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 - -```powershell -Set-ExecutionPolicy RemoteSigned -scope CurrentUser -```