If you want to do an offline update from VS17.12 to 17.13 , you can follow below steps:

  1. Update the layout to a specific version of the product.
  • Go to the Visual Studio 2022 Release History page and download a particular fixed version bootstrapper(e.g vs_Enterprise17.13.0), copy it into your layout, and use it to update the layout to that exact version specified in the bootstrapper.
  • Run the --layout command in an elevated prompt to download the latest packages into your layout.
vs_enterprise.exe --layout c:\VSLayout
  1. Update your Visual Studio 2022 by running the Visual Studio Installer > Update or you can also use the following command:
vs_enterprise.exe update --noWeb --quiet --installpath "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"

Update

The easiest and fastest way to update your offline Visual Studio instances: using a minimal offline layout.

Do i have to download the entire VS Layout package everytime if there is an version update?

Unlike a full Visual Studio layout, a minimal layout only contains the updated packages, so it is always smaller and faster to generate and deploy.

1.Generating a minimal layout.

MinimalLayout.exe generate --targetLocation c:\VSLayout\ --productIds Microsoft.VisualStudio.Product.Enterprise --baseVersion 17.12.5 --targetVersion 17.13.0  --languages en-US

2.Update the Visual Studio Installer

vs_enterprise.exe --quiet --update --offline C:\VSLayout\vs_installer.opc

3.Update the Visual Studio application

vs_enterprise.exe update --noWeb --quiet --installpath "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"

Docs Referred:

Update the layout to a specific version of the product

Update Visual Studio from a layout

Answer from Dou Xu-MSFT on Stack Overflow
Top answer
1 of 2
3

If you want to do an offline update from VS17.12 to 17.13 , you can follow below steps:

  1. Update the layout to a specific version of the product.
  • Go to the Visual Studio 2022 Release History page and download a particular fixed version bootstrapper(e.g vs_Enterprise17.13.0), copy it into your layout, and use it to update the layout to that exact version specified in the bootstrapper.
  • Run the --layout command in an elevated prompt to download the latest packages into your layout.
vs_enterprise.exe --layout c:\VSLayout
  1. Update your Visual Studio 2022 by running the Visual Studio Installer > Update or you can also use the following command:
vs_enterprise.exe update --noWeb --quiet --installpath "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"

Update

The easiest and fastest way to update your offline Visual Studio instances: using a minimal offline layout.

Do i have to download the entire VS Layout package everytime if there is an version update?

Unlike a full Visual Studio layout, a minimal layout only contains the updated packages, so it is always smaller and faster to generate and deploy.

1.Generating a minimal layout.

MinimalLayout.exe generate --targetLocation c:\VSLayout\ --productIds Microsoft.VisualStudio.Product.Enterprise --baseVersion 17.12.5 --targetVersion 17.13.0  --languages en-US

2.Update the Visual Studio Installer

vs_enterprise.exe --quiet --update --offline C:\VSLayout\vs_installer.opc

3.Update the Visual Studio application

vs_enterprise.exe update --noWeb --quiet --installpath "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"

Docs Referred:

Update the layout to a specific version of the product

Update Visual Studio from a layout

2 of 2
1

Microsoft has a handy post that details what you need to do. Essentially, at the command line on the computer with internet access, execute:

vs_enterprise.exe --layout c:\localVSlayout

Replace c:\localVsLayout with where you want to dump the files. It's going to be big! You may need to change vs_enterprise.exe with the correct executable name for your version of Visual Studio.

🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 5611529 › how-to-install-visual-studio-2022-offline
How to install Visual Studio 2022 offline ? - Microsoft Q&A
November 6, 2025 - Download the Visual Studio Installer: Start by downloading the Visual Studio installer from the Visual Studio page. Create an Offline Installer: Use the command line to create an offline installer.
Discussions

Problem having offline installation of Visual Studio 2022 community - Stack Overflow
How I will install this package in an offline machine not connected to the net??? ... If you go into Common7, there should be an IDE folder, and in that, a devenv.exe. Is that present? If so, run that .exe. That should open visual studio More on stackoverflow.com
🌐 stackoverflow.com
How to create an offline installation package?
https://learn.microsoft.com/en-us/visualstudio/install/create-an-offline-installation-of-visual-studio?view=vs-2022 More on reddit.com
🌐 r/VisualStudio
5
1
January 17, 2024
Is the VS 2022 offline installer available?
I burned VS2022 to a disc a few months ago so it's definitely possible Think this is what I followed https://learn.microsoft.com/en-us/visualstudio/install/create-an-offline-installation-of-visual-studio?view=vs-2022 More on reddit.com
🌐 r/dotnet
11
0
February 21, 2025
install visual studio 2022 on Mac
It only works on windows. The used to be a thing that was branded as Visual Studio for Mac, but it’s been retired. More on reddit.com
🌐 r/VisualStudio
16
0
August 7, 2024
🌐
Stack Overflow
stackoverflow.com › questions › 78833538 › problem-having-offline-installation-of-visual-studio-2022-community
Problem having offline installation of Visual Studio 2022 community - Stack Overflow
How I will install this package in an offline machine not connected to the net??? ... If you go into Common7, there should be an IDE folder, and in that, a devenv.exe. Is that present? If so, run that .exe. That should open visual studio
🌐
Visual Studio
visualstudio.microsoft.com › downloads
Visual Studio & VS Code Downloads for Windows, Mac, Linux
January 26, 2026 - Lightweight yet powerful source code editor with tons of extensions for many languages and runtimes. Download Visual Studio Code ... Built on open source. Runs everywhere ... A complete array of development tools and features in one place to elevate and enhance every stage of your software development. How to install offlineCompare editions
🌐
Microsoft Learn
learn.microsoft.com › en-us › troubleshoot › developer › visualstudio › installation › set-up-vs-professional-2022-offline-machine
Set Up Visual Studio on an Offline Machine - Visual Studio | Microsoft Learn
December 27, 2024 - Search for Visual Studio Professional 2022 and select Key. Select the 25-digit volume license key and copy it. Launch the Visual Studio shortcut as an administrator. On the menu bar, select Help > Register Product.
🌐
Medium
bw861987.medium.com › how-i-install-and-updatevisualstudio-2022-with-an-offline-installer-for-asp-net-core-c50c68c4d6b8
How I install and updateVisualStudio 2022 with an offline installer for ASP.NET CORE | by Bjego | Medium
August 1, 2022 - I am using Powershell in the context of my normal user to download the contents of Visual Studio. The image should be stored in C:\VisualStudio\Layout. Therefore I navigate to C:\VisualStudio with Powershell and run: ./vs_Professional.exe --layout c:\VisualStudio\Layout --add Microsoft.VisualStudio.Workload.NetWeb --includeOptional --lang en-US · The proxy configuration will be pulled from your useraccount, so you don’t have to deal with it. The download will spawn a “Visual Studio” installer window and then a console window which downloads all those files.
Find elsewhere
🌐
GitHub
github.com › MicrosoftDocs › visualstudio-docs › blob › main › docs › install › create-an-offline-installation-of-visual-studio.md
visualstudio-docs/docs/install/create-an-offline-installation-of-visual-studio.md at main · MicrosoftDocs/visualstudio-docs
Visual Studio is designed to work well in various computer configurations. In this article, you learn how to create an offline installation package of files for installation on the local machine.
Author   MicrosoftDocs
🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › install › create-an-offline-installation-of-visual-studio
Create an offline installation - Visual Studio (Windows) | Microsoft Learn
Visual Studio is designed to work well in various computer configurations. In this article, you learn how to create an offline installation package of files for installation on the local machine.
🌐
GitHub
github.com › carsten-riedel › Visual-Studio-Offline
GitHub - carsten-riedel/Visual-Studio-Offline: The one and only offline approach. Wrapping visual studio installation files in an offline installer with inno setup. · GitHub
Note: The modified ISS file can also be used for creating an offline installer for Visual Studio 2022 with a few modifications, including changing GETINSTALLLOCATION,VS_INSTALLER_EXE and the workloads in the SOURCEFILE variable.
Starred by 13 users
Forked by 5 users
Languages   Inno Setup
🌐
Reddit
reddit.com › r/dotnet › is the vs 2022 offline installer available?
r/dotnet on Reddit: Is the VS 2022 offline installer available?
February 21, 2025 -

Hello there,

I remember theres always an offline installer (about 22-25gb) to install visual studio completely.

2017 and 2019 had this type of installers, does anyone knows if VS 2022 offline installer is currently available?

Thank you

🌐
Trailhead Technology Partners
trailheadtechnology.com › home › creating a visual studio offline installer
Creating a Visual Studio Offline Installer - Trailhead Technology Partners
April 24, 2024 - This post will show you the steps needed to create your offline installer using the Visual Studio 2022 Community Preview edition. Other versions will work similarly, using their installer. You can always check the parameters for any version running the installer from the command line and adding ...
🌐
Developer Insider
developerinsider.co › download-visual-studio-2022-web-installer-iso-community-professional-enterprise
Download Visual Studio 2022 Web Installer / ISO (Community / Professional / Enterprise)
January 10, 2026 - Download the Web Installer or Offline Installer (ISO) of Visual Studio 2022 (Community / Professional / Enterprise) for Windows or macOS. Experience a fast and fluid, modern .NET IDE hand-tailored.
🌐
DownloadDevTools
downloaddevtools.com › home › educational › how to download & install visual studio 2022 offline?
How to Download & Install Visual Studio 2022 Offline? - DownloadDevTools
April 30, 2025 - DownloadDevTools.com is another method. This method is simpler and provides a replaceable download source for developers. To use this method, follow the instructions: Go to the Visual Studio 2022 page.
🌐
GitHub
github.com › MicrosoftDocs › SupportArticles-docs › blob › main › support › developer › visualstudio › installation › set-up-vs-professional-2022-offline-machine.md
SupportArticles-docs/support/developer/visualstudio/installation/set-up-vs-professional-2022-offline-machine.md at main · MicrosoftDocs/SupportArticles-docs
Search for Visual Studio Professional 2022 and select Key. Select the 25-digit volume license key and copy it. Launch the Visual Studio shortcut as an administrator. On the menu bar, select Help > Register Product.
Author   MicrosoftDocs
🌐
Firehouse Mouse
firehousemouse.com › how-to-make-an-offline-installer-visual-studio-2022
How To Make An Offline Installer Visual Studio 2022 - Firehouse Mouse
February 6, 2024 - This guide will show you the steps to create an offline installer for Microsoft Visual Studio 2022.
Call   8555066873
Address   PO Box 202, 14036, Corfu