-
Notifications
You must be signed in to change notification settings - Fork 63
Description
What happened?
Long story short: a game - not an app - with a WebView2 bugcheckes / crashes the entire OS if run on an Xbox One and some Xbox Series. When the control gets called, the Xbox logo on the stand-by button just blinks and restarts itself instantly.
It's always crashing on Xbox One. Sometimes it can launch on Xbox Series S, but there's degraded performance.
This doesn't happen on apps, only games.
Where it happens?
❌ Xbox One retail mode -> Any Game - not apps - with WebView2 crashes the system.
✔️ Xbox Series X -> No issues reported
STOWED_EXCEPTION_80004003). One notable thing is that, on retail, the WebView2 takes about 8 to 12 seconds to load a simple html page loaded with SetVirtualHostNameToFolderMapping. Note that the issue happens even without a SetVirtualHostNameToFolderMapping or EnsureCoreWebView2Async
✔️ Windows PC -> No issues
✔️ HoloLens -> No issues, apart from controls which is not the issue here.
Replicate the issue
I tried multiple variants to try to find the cause of the issue. Here's one of the simpliest:
- Make a new C# UWP app with Visual Studio
- Put the app as Release x64
- Wait for the NuGet packages to initialize
- Install Microsoft.UI.Xaml from NuGet
- Add the WebView2 to the project. I tried multiple ways which I will explain in the section below
- Associate the app to an identity on the Microsoft Store
- Create the appxupload
- Upload to the Microsoft Store
- Run on Xbox One in retail mode or in dev mode as a "Game". The app will crash
What I tried?
I tried most of these combinations and always got a crash on Xbox One
NOTE: some of these tests were made in october 2025, so some versions may not be updated
- Using different versions of
Microsoft.UI.Xaml. The default is 2.8.7 but also tried 2.8.6 - Using different versions of
Microsoft.Web.WebView2. Usually it's a transitive package stuck on version 1.0.2849, but it's also possible to install different versions, up to 1.0.3712-prerelease, which I did without success. Also tried some older versions too. - Manually updated
Microsoft.Windows.SDK.BuildToolsto10.0.26100.6901andMicrosoft.Windows.SDK.BuildTools.MSIXto1.7.20250829.1. They're usually stuck at10.0.22621.3233and1.3.20250314.1and they can't be updated since both are implicit SDK references - Used Visual Studio 17.14 (latest version), 17.10 and 18.1.0
- Made the app by using two templates "Empty UWP App" with .NET Native and AOT (.NET 9) and "Empty UWP App (.NET Native), which should be .NET 5?
- Supported OS Version. Tried 26100, 19041, 17763
- Target OS Version. Tried both 26100 and 22621
- Also released some packages made from scratch in a newly installed copy of Windows 11 with a newly installed copy of Visual Studio 2022 Community
- Run the app without a WebView2 and by loading the WebView2 by clicking on a button: it works until the WebView2 gets loaded, than crashes
- Run without the
App.Current.RequiresPointerMode = ApplicationRequiresPointerMode.WhenRequested;We can see the web cursor before the crash - Made packages with and without multiple capabilities
- Tested with and without
<WebView2LoaderPreference>Static</WebView2LoaderPreference>or<WebView2LoaderPreference>Static</WebView2LoaderPreference> - Tested with
Environment.SetEnvironmentVariable("WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS", [...]), with multiple arguments - Tested with a control from Microsoft.UI.Xaml different than WebView2: no issue there. Only the WebView2 is crashing the system
Sample code
A bare minimum example that triggers the crash is available here https://github.com/Pasquiindustry/TestWV2CrashXbo
Here are some codes that causes the issue
<controls:WebView2 x:Name="UiWebView">inside the MainPage.xaml file or a "secondary" page- Added the
new WebView2()tothis.Content, both inside aLoadedfunction (LikeMainPage_Loaded) and in a function called directly afterInitializeComponent(); - Made this random test
var environment = await CoreWebView2Environment.CreateAsync();
var coreWindow = Windows.UI.Core.CoreWindow.GetForCurrentThread();
var controllerWindowReference = CoreWebView2ControllerWindowReference.CreateFromCoreWindow(coreWindow);
var controller = await environment.CreateCoreWebView2ControllerAsync(controllerWindowReference);
// Crash at this point. Same issue with CreateCoreWebView2CompositionControllerAsync Importance
Blocking. My app's basic functions are not working due to this issue.
Runtime Channel
Stable release (WebView2 Runtime)
Runtime Version
146.x
SDK Version
from 1.0.2592.51 to 1.0.3848-prerelease
Framework
WinUI2/UWP
Operating System
Xbox
OS Version
10.0.26100.7010
Repro steps
Install and open a UWP game with just a WebView2 control inside. The game should open, but instead bugchecks / crashes the entire console or has degraded performance. Here's a repro project https://github.com/Pasquiindustry/TestWV2CrashXbo
Repros in Edge Browser
No, issue does not reproduce in the corresponding Edge version
Regression
Don't know
Last working version (if regression)
No response