1. Scoop のインストール#
以下のコマンドを使用して、Scoop をデフォルトのディレクトリ(C:\Users<username>\scoop)にインストールできます:
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
または
iwr -useb get.scoop.sh | iex
管理者として実行できない場合、次の方法でエラーを解決できます:
iwr -useb get.scoop.sh -outfile 'install.ps1'
.\install.ps1 -RunAsAdmin