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
🌐
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
You can use the Download all, then install feature from the Visual Studio Installer to download an installation package on the local machine before you install it locally, or you can use the command line to create a local installation package ...
🌐
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.
Discussions

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
How to install Visual Studio 2022 offline ?
Hello, I have tried to install Visual Studio 2022 Professional offline and I have encountered the issue with certificate revocation checks describes in this post and comment. I have downloaded 3 days ago the last version of VS Installer (version… More on learn.microsoft.com
🌐 learn.microsoft.com
4
0
November 6, 2025
How to create offline installer for visual studio community 2022
Hi I am Rupesh from India and I have bought a new PC and I have tried to install visual studio community 2022 and I have succeeded but I can't create offline installer for future needs. I have downloaded latest visual studio community 2022 installer and after that I have selected option install... More on geek.digit.in
🌐 geek.digit.in
6
January 17, 2022
Visual Studio 2022 Offline Installer
Hello I need to create an offline installer copy of Visual Studio 2022 PRO and downloaded the online installer v17.5 I need minimum set of component needed for working on Windows Desktop - .NET Framework 4.5~4.8 projects in VB and C# en-US only, and… More on learn.microsoft.com
🌐 learn.microsoft.com
1
0
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.

🌐
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

🌐
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 - I downloaded a previous version of Vs_Professional and rebuilt the layout; I'll try installing it again and let you know if that bypasses the problem. 4 comments Show comments for this answer Report a concern ... Thank you for the update. Re-creating the offline layout using a previous Visual Studio Professional version is a good approach, as it may bypass the certification validation problem seen in the latest installer.
Find elsewhere
🌐
Visual Studio
visualstudio.microsoft.com › downloads
Visual Studio & VS Code Downloads for Windows, Mac, Linux
January 26, 2026 - Are you looking for one of the Visual Studio 2022 long term servicing baselines (LTSCs)? You can find them here. ... Download our cross-platform extension that supports deep learning frameworks including Google TensorFlow, Keras, & more. ... A powerful code editor optimized for building and debugging modern web and cloud applications. ... This package installs run-time components of Visual C++ libraries and can be used to run such applications on a computer even if it does not have Visual Studio installed.
🌐
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 - Because of this I have to create an offline installation image for my VisualStudio 2022 instance and install this local version as an administrator. You can easily download the latest VS install clis from the official docs for offline installations.
🌐
GitHub
gist.github.com › stormwild › 3a7f803113329d36511160534f60eef6
Visual Studio · GitHub
Create an offline installation - Visual Studio (Windows) | Microsoft Learn · Create a network-based installation - Visual Studio (Windows) | Microsoft Learn · Use command-line parameters to install Visual Studio | Microsoft Learn · Command-line parameter examples for installation - Visual Studio (Windows) | Microsoft Learn · Download Visual Studio 2022 Web Installer / ISO (Community / Professional / Enterprise)
🌐
Digit
geek.digit.in › home › forums › software › programming
How to create offline installer for visual studio community 2022 | Digit Technology Discussion Forum
January 17, 2022 - Use web installer command line --layout to download the files offline and then create an ISO out of it using third-party tools. OP seems to be under impression that the same VS installer exe is going to create ISO for him. Command line parameters to VS installer2022 exe are documented here ...
🌐
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 ...
🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › install › create-a-network-installation-of-visual-studio
Create a network-based installation - Visual Studio (Windows) | Microsoft Learn
November 11, 2025 - Create a private network install point to deploy Visual Studio to support enterprise users with limited permissions or client machines with limited internet access.
🌐
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.
🌐
Super User
superuser.com › questions › 1749638 › visual-studio-2022-build-tools
windows - Visual Studio 2022 build tools - Super User
October 26, 2022 - From the script the offline installer is called with C:\CppBuildTools\vs_setup.exe --quiet --nocache --wait --in C:\CppBuildTools\CustomInstall.json command and the bellow is the content of CustomInstall.json file.
🌐
Patch My PC
patchmypc.com › home › knowledge base › how to package visual studio 2022 as a custom app how to package visual studio 2022 as a c… how to package visual studio 2022 as a custom app
Package Visual Studio 2022 as Custom App - Patch My PC
January 6, 2026 - Patch My PC recommends to manually install Visual Studio 2022 using the stub installer to visually check the Name and Version that should be used when creating the Custom App.