Installing or updating Microsoft Edge on Windows 11
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Since mid-May I have scoured all information I can find on this subject but nothing works. Without MS Edge WebView2 running I have not been able to run my financial software: Quicken.
I have attempted to upload .pfds of an answer a very similar situation asked in 2023 but I just sit and watch it not load so here is the URL I refer to: https://answers.microsoft.com/en-us/microsoftedge/forum/all/ms-edge-webview2-runtime-missing-when-i-download/64732cf4-a5fb-496c-92c9-9ff596c6ae4c
none of the reg entries that answer references can I find on my computer which has all Win11 updates installed to date. Most recently:
2025-06 Cumulative Update for Windows 11 Version 23H2 for x64-based Systems (KB5060999)
This is a relevant reg entry:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate]
"LastLogonTime-Machine"=hex(b):e0,72,b8,98,f4,60,db,01
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\Clients]
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\Clients{56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}]
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\Clients{56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}\Commands]
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\Clients{56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}\Commands\on-logon-autolaunch]
"Enabled"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\ClientState]
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\ClientState{56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}]
"dr"="1"
"lastrun"="13390183816234367"
"metricsid"="72e44e56-32cc-4e2c-b7ba-040da48df212"
"metricsid_installdate"="1651789994"
"metricsid_enableddate"="0"
"freseenversion"="101.0.1210.32"
"freseen"="13296264777952024"
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\ClientState{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}]
"dr"="0"
"lastrun"="13378579145783643"
[HKEY_CURRENT_USER\Software\Microsoft\EdgeUpdate\proxy]
"source"="IEWPAD"
Thanks to all who can help!
Installing or updating Microsoft Edge on Windows 11
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Hello David ji1,
Welcome to the Microsoft Community.
### Part 1: Solving the WebView2 Installation Problem
Alternative Installation Method:
- Visit Microsoft's official download page:
```
https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section
```
- Download the "Evergreen Standalone Installer"
- Save to C:\Temp\WebView2Installer.exe (create the Temp folder if needed)
```cmd
start /wait "" "C:\Temp\WebView2Installer.exe" /install /silent /log "C:\Temp\webview2_install.log" /verbose
```
- Right-click the installer → Properties → Digital Signatures
- Verify it's signed by "Microsoft Corporation"
- Check if these services are running:
```cmd
sc query EdgeUpdate
sc query edgeupdatem
```
### Part 2: Registry Editing Made Simple
Creating the .reg File:
```reg
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate]
"InstallSource"="standalone"
"TargetVersionPrefix"="126.0.2592."
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}]
"pv"="126.0.2592.68"
"InstallTime"="13390183816234367"
```
webview2_fix.reg (select "All Files" as type)- Create a backup:
```cmd
reg export "HKLM\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate" "%USERPROFILE%\Desktop\EdgeUpdate_backup.reg"
```
### Part 3: Troubleshooting the Silent Install
If the installer still doesn't work:
```cmd
mkdir "%USERPROFILE%\Downloads\WebView2Logs"
```
Then run:
```cmd
"C:\Temp\WebView2Installer.exe" /install /silent /log "%USERPROFILE%\Downloads\WebView2Logs\install.log"
```
- Download Microsoft's repair tool:
```
```
- Select "Repair WebView2 components"
### Important Notes:
EdgeUpdate and Clients keys.```powershell
Get-WindowsPackage -Online | Where-Object {$_.PackageName -match "MicrosoftEdge"} | Remove-WindowsPackage -Online -NoRestart
```
Best regards,
Ami | Microsoft Community Support Specialist
Hello David ji1,
Welcome to the Microsoft Community.
Here's a comprehensive solution to resolve the missing MS Edge WebView2 Runtime issue on your Windows 11 system (after KB5060999 update):
### Complete Step-by-Step Fix
- Full Clean Uninstall
- Run in Admin PowerShell:
```powershell
Get-AppxPackage *MicrosoftEdge* | Remove-AppxPackage -AllUsers
Get-AppxPackage *WebView2* | Remove-AppxPackage -AllUsers
```
- Manual cleanup:
```cmd
taskkill /f /im msedgewebview2.exe
rmdir /s /q "%ProgramFiles(x86)%\Microsoft\EdgeWebView"
rmdir /s /q "%LocalAppData%\Microsoft\EdgeWebView"
```
- System Repair
- Run these sequentially in Admin CMD:
```cmd
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
chkdsk /f /r
```
- Fresh Installation
- Download the offline installer (v126.0.2592.68):
```powershell
curl -o "$env:USERPROFILE\Downloads\WebView2StandaloneInstaller.exe" "https://go.microsoft.com/fwlink/p/?LinkId=2124703"
```
- Install with logging:
```cmd
"%USERPROFILE%\Downloads\WebView2StandaloneInstaller.exe" /install /silent /log "%USERPROFILE%\Downloads\webview2_install.log"
```
- Registry Configuration
Create a
.regfile with:```reg
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate]
"InstallSource"="standalone"
"TargetVersionPrefix"="126.0.2592."
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}]
"pv"="126.0.2592.68"
"InstallTime"="13390183816234367"
```
### Verification Steps
- Check installation:
```cmd
dir "%ProgramFiles(x86)%\Microsoft\EdgeWebView\Application\126.0.2592.68\msedgewebview2.exe"
```
- Test functionality:
```powershell
Start-Process "msedgewebview2.exe" -ArgumentList "--test-type=webview2" -Wait
```
### Quicken Workaround
If issues persist:
- Right-click Quicken shortcut → Properties
- Compatibility tab:
"Run this program in compatibility mode for: Windows 10"
"Override high DPI scaling behavior" → "Application"
### Additional Notes
• Create a system restore point before proceeding
• For enterprise systems, contact your IT admin for group policy exceptions
Best regards,
Lizzie-z| Microsoft Community Support Specialist
Very many thanks for your detailed instructions on how to deal with my problems with WebView 2 & Quicken.
All seems to have gone well up to the second part of 3. Fresh Installation but, although I believe I have followed your advice to the letter and after several attempts I cannot get this instruction to work; after clicking on the instruction in cmd running as an administrator that instruction apparently gets no reaction nor does any log file get written where it should.
3. Fresh Installation
- Download the offline installer (v126.0.2592.68):
```powershell
curl -o "$env:USERPROFILE\Downloads\WebView2StandaloneInstaller.exe" "https://go.microsoft.com/fwlink/p/?LinkId=2124703"
```
- Install with logging:
```cmd
"%USERPROFILE%\Downloads\WebView2StandaloneInstaller.exe" /install /silent /log "%USERPROFILE%\Downloads\webview2_install.log"
As I am stuck at this point I would value further advice.
Also, the instructions on how to create new reg entries are unclear to me (I haven't done this sort of stuff for 40-50 years); are you asking me to add to .......\EdgeUpdate] 2 additional entries and likewise in . . . . . \Clients?
Finally the ver. of Regedit installed on my computer is 10.0.22621.5262 not Windows Registry Editor Version 5.00 as you request. Is it OK to use ver 10 . . . ? Or should/can I download what I take to be the older version and will my system allow me to install it?
Again, many thanks for your help.
Hello David ji1,
Welcome to the Microsoft Community.
Here's a comprehensive solution to resolve the missing MS Edge WebView2 Runtime issue on your Windows 11 system (after KB5060999 update):
### Complete Step-by-Step Fix
- Run in Admin PowerShell:
```powershell
Get-AppxPackage *MicrosoftEdge* | Remove-AppxPackage -AllUsers
Get-AppxPackage *WebView2* | Remove-AppxPackage -AllUsers
```
- Manual cleanup:
```cmd
taskkill /f /im msedgewebview2.exe
rmdir /s /q "%ProgramFiles(x86)%\Microsoft\EdgeWebView"
rmdir /s /q "%LocalAppData%\Microsoft\EdgeWebView"
```
- Run these sequentially in Admin CMD:
```cmd
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
chkdsk /f /r
```
- Download the offline installer (v126.0.2592.68):
```powershell
curl -o "$env:USERPROFILE\Downloads\WebView2StandaloneInstaller.exe" "https://go.microsoft.com/fwlink/p/?LinkId=2124703"
```
- Install with logging:
```cmd
"%USERPROFILE%\Downloads\WebView2StandaloneInstaller.exe" /install /silent /log "%USERPROFILE%\Downloads\webview2_install.log"
```
Create a .reg file with:
```reg
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate]
"InstallSource"="standalone"
"TargetVersionPrefix"="126.0.2592."
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}]
"pv"="126.0.2592.68"
"InstallTime"="13390183816234367"
```
### Verification Steps
```cmd
dir "%ProgramFiles(x86)%\Microsoft\EdgeWebView\Application\126.0.2592.68\msedgewebview2.exe"
```
```powershell
Start-Process "msedgewebview2.exe" -ArgumentList "--test-type=webview2" -Wait
```
### Quicken Workaround
If issues persist:
"Run this program in compatibility mode for: Windows 10"
"Override high DPI scaling behavior" → "Application"
### Additional Notes
• Create a system restore point before proceeding
• For enterprise systems, contact your IT admin for group policy exceptions
Best regards,
Lizzie-z| Microsoft Community Support Specialist