Microsoft Visual Studio 2022 Offline Installer Download

Visual Studio 2022 is Microsoft’s premier Integrated Development Environment (IDE). While the standard web installer is small and easy to use, it requires a consistent internet connection to download files during installation.

For enterprises, restricted environments, or simply to save time on multiple installations, creating an offline installer (also known as a "layout") is the best solution. This allows you to download all necessary files once and install them on multiple machines without needing to re-download components.

Here is a step-by-step guide on how to create the offline installer for all versions of Visual Studio 2022 (Community, Professional, and Enterprise).


Before attempting to download the offline layout, ensure you have the following:

| Requirement | Detail | | :--- | :--- | | Windows OS | Windows 10 version 1809 or later, Windows Server 2019 or later (64-bit required). | | Storage Space | Minimum 35 GB free (recommend 50 GB+ for full install). The offline folder will be large. | | Initial Internet | A stable connection (only needed once to create the layout). | | Admin Rights | Local administrator privileges on the machine building the layout. | | USB Drive (Optional) | If deploying to air-gapped PCs, prepare a USB 3.0 drive formatted as NTFS or exFAT (FAT32 has a 4 GB file limit, which fails for large packages). | microsoft visual studio 2022 offline installer download


| Scope | Approx. Size | | :--- | :--- | | .NET desktop only (en-US) | ~6-8 GB | | Web dev + .NET desktop | ~12-15 GB | | Game dev with Unity/Unreal | ~25-30 GB | | Full layout (all workloads + all langs) | 50+ GB |


Save the following as create_offline_vs2022.bat:

@echo off
SET OFFLINE_PATH=D:\VS2022_Enterprise_Offline
SET BOOTSTRAPPER=vs_enterprise.exe

echo Creating VS2022 offline layout at %OFFLINE_PATH%... %BOOTSTRAPPER% --layout %OFFLINE_PATH% ^ --lang en-US ^ --add Microsoft.VisualStudio.Workload.ManagedDesktop ^ --add Microsoft.VisualStudio.Workload.NativeDesktop ^ --add Microsoft.VisualStudio.Workload.NetWeb ^ --add Microsoft.VisualStudio.Workload.Data ^ --add Microsoft.VisualStudio.Workload.VisualStudioExtension ^ --includeRecommended ^ --useLatestInstaller

echo Layout complete. You can now copy %OFFLINE_PATH% to deployment targets. pause Before attempting to download the offline layout, ensure

Run this overnight. By morning, you have a ready-to-deploy Visual Studio 2022 offline installer.


Cause: The target machine cannot find the Catalog.json file. Fix: Ensure you copied the entire folder structure, not just the .exe. The layout folder must contain a Catalog.json and Manifest folder.

Before we dive into commands, let's clear up a common misconception. | Scope | Approx

If you visit the official Visual Studio download page, you will find a small vs_community.exe, vs_professional.exe, or vs_enterprise.exe file. This is NOT the offline installer. That lightweight executable is a web bootstrapper. It needs a live internet connection to download the actual packages from Microsoft’s servers.

The true offline installer is a local folder on your hard drive or USB stick that contains:

You create this folder once (using an internet connection) and then reuse it an unlimited number of times without any internet connection.


Open Command Prompt as Administrator or PowerShell and navigate to where you saved the bootstrapper.

You can now copy this folder to a USB drive or a network share to install on other computers.