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 3 years have passed since last update.

Visual Studio のオフライン インストール

Last updated at Posted at 2021-03-31

Build Tools

Offline Install

  • 2017と2019が対応。
    • (2013と2015は以下に対応していない。※すでに含まれている)
vs_buildtools.exe
 --layout offline ^
 --lang ja-JP ^
 --add Microsoft.Net.Component.4.5.TargetingPack ^
 --add Microsoft.Net.Component.4.5.2.TargetingPack 

--nowebオプションを付けてセットアップ。

Visual Studio Community

vs 2019

download
vs_Community.exe ^
 --layout vs2019 ^
 --lang ja-JP ^
 includeRecommended ^
 ^
 --add Microsoft.VisualStudio.Workload.ManagedDesktop ^
 --add Microsoft.VisualStudio.Component.Git ^
 ^
 --add Microsoft.Net.Component.4.5.TargetingPack ^
 --add Microsoft.Net.Component.4.5.2.TargetingPack

オフラインでインストールするには以下。

setup.bat
vs_Community.exe ^
 --noweb ^
 ^
 --add Microsoft.VisualStudio.Workload.ManagedDesktop ^
 --add Microsoft.VisualStudio.Component.Git ^
 ^
 --add Microsoft.Net.Component.4.5.TargetingPack ^
 --add Microsoft.Net.Component.4.5.2.TargetingPack
  • vs2019の場合、全部ダウンロードしてからインストールする を選択。

err1.PNG

vs 2017

download
vs_Community.exe ^
 --layout vs2017 ^
 --lang ja-JP ^
 includeRecommended ^
 ^
 --add Microsoft.VisualStudio.Workload.ManagedDesktop ^
 --add Microsoft.VisualStudio.Component.Git ^
 ^
 --add Microsoft.Net.Component.4.5.TargetingPack ^
 --add Microsoft.Net.Component.4.5.2.TargetingPack

オフラインでインストールするには以下。

setup.bat
vs_Community.exe ^
 --noweb ^
 ^
 --add Microsoft.VisualStudio.Workload.ManagedDesktop ^
 --add Microsoft.VisualStudio.Component.Git ^
 ^
 --add Microsoft.Net.Component.4.5.TargetingPack ^
 --add Microsoft.Net.Component.4.5.2.TargetingPack
  • vs2017の場合、ダウンロードしながらインストールを選択。
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?