LoginSignup
0
2

More than 5 years have passed since last update.

ChocolateyでWindows開発環境構築

Last updated at Posted at 2019-04-09

概要

ChocolateyでWindows開発環境を構築します。

Chocolateyインストール

Installing Chocolateyのコマンドを実行。

コマンドプロンプト(管理者権限)で実行
> @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

各種ソフトインストール

Google Chrome

コマンドプロンプト(管理者権限)で実行
> choco install GoogleChrome -y

Visual Studio Code

コマンドプロンプト(管理者権限)で実行
> choco install VisualStudioCode -y

Git

コマンドプロンプト(管理者権限)で実行
> choco install git -y

Node.js

コマンドプロンプト(管理者権限)で実行
> choco install nodejs -y

7zip

コマンドプロンプト(管理者権限)で実行
> choco install 7zip -y

上記まとめてインストール

コマンドプロンプト(管理者権限)で実行
> choco install GoogleChrome VisualStudioCode git nodejs 7zip -y

おまけ

git初期設定
> git config --global user.email "you@example.com"
> git config --global user.name "Your Name"

以上

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