LoginSignup
0
0

More than 3 years have passed since last update.

PowerShellによるChocolateyのインストール方法

Last updated at Posted at 2020-11-28

インストール方法

英語が苦手な方向けにWindows版のChocolateyのインストール方法を残しておきます。

1.PowerShellを管理者権限で実行します。
image.png

2.PowerShellで下記を入力します。

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

3.PowerShellで、chocoと打って、バージョン情報が出てくればインストール完了です。

2,3の実行結果
image.png

参考サイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0