Scoop code example
Example 1: scoop
$iwr https://deno.land/x/install/install.ps1 -useb | iex
Example 2: Scoop
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
# or shorter
iwr -useb get.scoop.sh | iex