0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WindowsPCのセットアップの手間を省く「Chocolatey」

Last updated at Posted at 2022-02-05

はじめに

  • ChocolateyとはWindows用のパッケージ管理ツール
  • コマンド一つで必要なソフトウェアをインストールできる
  • 新規PCで開発環境を作る際におすすめ

目次

  1. Chocolateyのインストール方法
  2. 各ソフトウェアのインストール
  3. 参考文献

1.Chocolateyのインストール方法

  • 「Windows 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://community.chocolatey.org/install.ps1'))

各ソフトウェアのインストール

  • インストールコマンドを実行します。
    • 以下コマンドは例ですので、必要なソフトウェアに変更してください!
    • cinst : ソフトウェアのインストールコマンド
    • -y: cinstのオプション(インストール中のYes/No)
    • 対象ソフトウェアを羅列すればOKです。(指定するソフト名は公式HPで検索)
cinst googlechrome git tortoisegit nodejs-lts yarn 7zip visualstudiocode putty winscp -y

参考文献

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?