Hi, thanks for the detailed update, it really helps clarify where things stand. From what you’ve shared, it looks like the system is doing its job setting up the app container and launching the process, but something is quietly failing during the app’s startup. This kind of silent failure is actually a known issue with certain versions of the Windows App SDK, especially around version 1.7, where Store-installed apps like Photos and Copilot can fail to initialize properly even though everything else seems fine. Since your system already has the latest updates and runtimes, the next step I’d recommend is to completely remove all existing Windows App Runtime packages using PowerShell with the command Get-AppxPackage WindowsAppRuntime -AllUsers | Remove-AppxPackage, then reinstall the latest version using winget install --id=Microsoft.WindowsAppRuntime -e. After that, restart your PC and try launching the apps again. Just to help us dig a bit deeper, do other Store apps like Clipchamp or Paint show the same behavior?
Also, if you can, check for any crash-related files under C:\ProgramData\Microsoft\Windows\AppRepository\StateRepository-Machine.srd or in the app’s local temp folder, as those might give us more clues about what’s going wrong.
Let me know how it goes and we’ll take it from there.