Steps:
mkdir C:\Installs\VS2017Community\VS2017CommunityLayout
pushd C:\Installs\VS2017Community
bitsadmin.exe /transfer "VS2017CommunityBootstrap" https://aka.ms/vs/15/release/vs_community.exe C:\Installs\VS2017Community\vs_community.exe
vs_community.exe --lang en-US --layout C:\Installs\VS2017Community\VS2017CommunityLayout
VS2017CommunityLayout\vs_community.exe
Step 3 needs a full path to the destination file.
Step 4 can take a relative path.
Step 4 takes considerable time (for 15.2 about 90 minutes on a 100 Mibit/s fiber connection with an ~8 millisecond ping time to download.visualstudio.microsoft.com
; for 15.8 with 80 Mibit/s and a ~4 millisecond ping about 120 minutes) resulting in ~40 gigabyte download.
After download, run the vs_setup.exe
in theVS2017CommunityLayout
directory.
Note that upgrading to a newer version of Visual Studio 2017 will require downloads! See [WayBack] Offline Install Modify always goes to the WEB – Developer Community.
Note that after installation, Visual Studio 2017 needs considerable disk space as found via visual studio 2017 disk size – Google Search:
[WayBack] Visual Studio 2017 System Requirements | Microsoft Docs:
Find the minimum system requirements, supported hardware, and languages for the Visual Studio 2017 product family.
Hardware
- 1.8 GHz or faster processor. Dual-core or better recommended
- 2 GB of RAM; 4 GB of RAM recommended (2.5 GB minimum if running on a virtual machine)
- Hard disk space: up to 130 GB of available space, depending on features installed; typical installations require 20-50 GB of free space.
- Hard disk speed: to improve performance, install Windows and Visual Studio on a solid state drive (SSD).
- Video card that supports a minimum display resolution of 720p (1280 by 720); Visual Studio will work best at a resolution of WXGA (1366 by 768) or higher.
For instance, the choices below require about 22 gigabyte of space, while adding mobile .NET development adds another 13 gigabyte.
Via:
- [WayBack] Where can I find ISO Images? | Visual Studio: Visual Studio 2017 download and installation on where to find ISO Images: there are no ISO images; you have to build your own off-line installer
- [WayBack] Create an Offline Installation of Visual Studio – Visual Studio | Microsoft Docs: Find out how to install Visual Studio offline.
- [WayBack] Install on low bandwidth or unreliable network environments – Visual Studio | Microsoft Docs Learn how to use the Visual Studio installer when your network is unreliable or you have low-bandwidth, and how to use the command line to download installation files.
- [WayBack] Windows batch file file download from a URL – Stack Overflow
- [WayBack] BITSAdmin Tool | Microsoft Docs BITSAdmin is a command-line tool that you can use to create download or upload jobs and monitor their progress.
- [WayBack] BITSAdmin Examples | Microsoft Docs
- [WayBack] bitsadmin | Microsoft Docs
- I got the Visual Studio 2017 Community Edition download bootstrap URL https://aka.ms/vs/15/release/vs_community.exe from [WayBack] Downloads | IDE, Code, & Team Foundation Server | Visual Studio.
–jeroen