Microsoft Edge Webview2 Runtime Offline Installer Repack Jun 2026
Repacks can be scripted to install at the system level, making the runtime available to all users on a machine.
The of your target machines (64-bit, 32-bit, or mixed)?
Developers can include the repack inside their software installers (like Inno Setup, Wix, or Advanced Installer) to guarantee the dependency exists before their app launches. microsoft edge webview2 runtime offline installer repack
Consequently, the community has created "repacks"—unofficial archives that collect various historical standalone versions. These repositories are often hosted on GitHub or third-party file sites, allowing users to download MicrosoftEdgeWebView2RuntimeInstallerX64.exe for specific build numbers like 130.0.2849.46 or 120.0.2210.91 that are no longer listed on the official "Fixed Version" download page.
: When repacking for enterprise tools (like SCCM or InTune), use the following command for a silent, per-machine installation: Repacks can be scripted to install at the
If the command returns a version number (e.g., 146.0.3856.59 ), the installation succeeded.
The first and most common option is the "Evergreen Standalone Installer." This is a full-blown installer that can install the Evergreen Runtime in an offline environment. It's a complete package, typically around 130-160 MB in size, that contains all the necessary components to install the runtime on a target machine without requiring any further downloads. The first and most common option is the
Repacks vary widely in their modifications, but common alterations include:
This article explores what a repack is, why it is necessary, and how to acquire and deploy it effectively in 2026. What is the WebView2 Runtime Offline Installer Repack?
Intune prefers .intunewin files. Your repack can be wrapped as an Intune Win32 app. Set the detection rule to check the registry key: HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients\F3017226-FE2A-4295-8BDF-00C3A9A7E4C5 pv (Version).
<# .SYNOPSIS Repack script to silently install WebView2 Runtime Offline Installer. #> $InstallerName = "MicrosoftEdgeWebview2Setup.exe" $LogPath = "C:\Windows\Logs\WebView2Install.log" if (Test-Path $InstallerName) # Arguments for a completely silent installation without a system reboot request $Arguments = "/silent /install" Start-Process -FilePath $InstallerName -ArgumentList $Arguments -Wait -NoNewWindow # Check registry to verify installation success $RegCheck = Get-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients\F3017226-FE2A-4295-8BDF-00C3A9A7E4C5" -Name "pv" -ErrorAction SilentlyContinue if ($RegCheck) Out-File $LogPath Exit 0 else "WebView2 installation failed or registry key not found." else Out-File $LogPath -Append Exit 1 Use code with caution. Method B: Creating an MSI Wrapper via Inno Setup