Terminal fails to launch because of 21h1_themeresources.xaml #20751

Closed
opened 2026-01-31 07:23:07 +00:00 by claunia · 3 comments
Owner

Originally created by @xlinush on GitHub (Oct 30, 2023).

Windows Terminal version

1.18.2822.0

Windows build number

10.0.25987.1000

Debugging notes

Hi,

I've not been able to launch Terminal for a while and decided to debug into the launching.

(518c.1628): Windows Runtime Originate Error - code 40080201 (first chance)
(518c.1628): C++ EH exception - code e06d7363 (first chance)
(518c.1628): C++ EH exception - code e06d7363 (first chance)
C:\__w\1\s\src\cascadia\TerminalApp\Generated Files\winrt\base.h(6620)\TerminalApp.dll!00007FF9FC4AF7A2: LogHr(1) tid(1628) 80004005 Unspecified error
    [struct winrt::Microsoft::UI::Xaml::Controls::XamlControlsResources __cdecl winrt::Windows::Foundation::IActivationFactory::ActivateInstance<struct winrt::Microsoft::UI::Xaml::Controls::XamlControlsResources>(void) const]
(518c.1628): C++ EH exception - code e06d7363 (first chance)
(518c.1628): C++ EH exception - code e06d7363 (first chance)
TerminalApp.dll!00007FF9FC529886: ReturnHr(1) tid(1628) 80004005 Unspecified error
    Msg:[winrt::hresult_error: Cannot locate resource from 'ms-appx:///Microsoft.UI.Xaml/Themes/21h1_themeresources.xaml'.] 
(518c.1628): Windows Runtime Originate Error - code 40080201 (first chance)
(518c.1628): Unknown exception - code c000027b (!!! second chance !!!)
KERNELBASE!RaiseFailFastException+0x160:
00007ffa`8ac34ac0 0f1f440000      nop     dword ptr [rax+rax]

It seems like some WinUI resource is missing which caused Terminal to crash. Doesn't feel like a problem of Terminal, and I'm just wondering if anyone's hit this before. It could be that I'm running an insider build of Windows which was messed up a while ago.

Thanks!

Steps to reproduce

  1. Launch Terminal
  2. Notice nothing happened

Expected Behavior

Terminal should launch

Actual Behavior

Terminal didn't launch

Originally created by @xlinush on GitHub (Oct 30, 2023). ### Windows Terminal version 1.18.2822.0 ### Windows build number 10.0.25987.1000 ### Debugging notes Hi, I've not been able to launch Terminal for a while and decided to debug into the launching. ```windbg (518c.1628): Windows Runtime Originate Error - code 40080201 (first chance) (518c.1628): C++ EH exception - code e06d7363 (first chance) (518c.1628): C++ EH exception - code e06d7363 (first chance) C:\__w\1\s\src\cascadia\TerminalApp\Generated Files\winrt\base.h(6620)\TerminalApp.dll!00007FF9FC4AF7A2: LogHr(1) tid(1628) 80004005 Unspecified error [struct winrt::Microsoft::UI::Xaml::Controls::XamlControlsResources __cdecl winrt::Windows::Foundation::IActivationFactory::ActivateInstance<struct winrt::Microsoft::UI::Xaml::Controls::XamlControlsResources>(void) const] (518c.1628): C++ EH exception - code e06d7363 (first chance) (518c.1628): C++ EH exception - code e06d7363 (first chance) TerminalApp.dll!00007FF9FC529886: ReturnHr(1) tid(1628) 80004005 Unspecified error Msg:[winrt::hresult_error: Cannot locate resource from 'ms-appx:///Microsoft.UI.Xaml/Themes/21h1_themeresources.xaml'.] (518c.1628): Windows Runtime Originate Error - code 40080201 (first chance) (518c.1628): Unknown exception - code c000027b (!!! second chance !!!) KERNELBASE!RaiseFailFastException+0x160: 00007ffa`8ac34ac0 0f1f440000 nop dword ptr [rax+rax] ``` It seems like some WinUI resource is missing which caused Terminal to crash. Doesn't feel like a problem of Terminal, and I'm just wondering if anyone's hit this before. It could be that I'm running an insider build of Windows which was messed up a while ago. Thanks! ### Steps to reproduce 1. Launch Terminal 2. Notice nothing happened ### Expected Behavior Terminal should launch ### Actual Behavior Terminal didn't launch
claunia added the Needs-TriageIssue-BugResolution-ExternalCulprit-Centennial labels 2026-01-31 07:23:08 +00:00
Author
Owner

@zadjii-msft commented on GitHub (Oct 31, 2023):

This feels a lot like #15583. Especially around the area of https://github.com/microsoft/terminal/issues/15583#issuecomment-1708760392.

What you're seeing is certainly a different crash stack, but I think they've ultimately got a very similar root cause: the MUX package gets into a state where it can't be loaded, and that means the Terminal can't either.

I think this PowerShell 7 script might help debug? Could you run it and share the output?

$results = @()
$allPackages = Get-AppxPackage
# First, dump all the XAML packages
$allPackages | Where-Object { $_.PackageFullName -like "*xaml*" }
write-output "----------------------------------------"
# Iterate over all regkeys that start with "AppX" in HKEY_CURRENT_USER\Software\Classes
$keys = Get-ChildItem HKCU:\Software\Classes | Where-Object { (Get-ItemProperty $_.PSPath) -like "*AppX*" }
foreach ($key in $keys) {
    # if the name is LITERALLY "HKEY_CURRENT_USER\Software\Classes\*", skip it
    if ($key.Name -eq "HKEY_CURRENT_USER\Software\Classes\*") {
        continue
    }
    # Does the key have a "Shell/open" subkey?
    if (Test-Path "$($key.PSPath)\Shell\open") {
        # Look for "PackageId" under the shell/open subkey
        $packageId = (Get-ItemProperty "$($key.PSPath)\Shell\open").PackageId
        # Is the package installed?
        $package = $allPackages | Where-Object { $_.PackageFullName -eq $packageId }
        if ($package) {
            # Uncomment to list installed packages in Classes. Left commented out for privacy.
            # Write-Host "`e[32m$packageId`e[m -> $($package.PackageFullName)"
            continue
        }
        Write-Host "$key -> `e[31m$packageId`e[m wasn't found"
        $results += [PSCustomObject]@{
            Key = $key.Name
            PackageId = $packageId
        }
    }
    else{
        write-output "didn't find 'Shell\open' under `e[33m$key`e[m"
    }
}
write-output "----------------------------------------"
write-output "Summary: These we couldn't find`n"
write-output $results

addenda:

  • This is MSFT:46696372
  • Failure ID 162f79ba-41e9-8d0b-0d78-7816f7ad69c1
  • .03% of our 1.18 crashes, ~200 total. It's extremely rare.
@zadjii-msft commented on GitHub (Oct 31, 2023): This feels a lot like #15583. Especially around the area of https://github.com/microsoft/terminal/issues/15583#issuecomment-1708760392. What you're seeing is certainly a different crash stack, but I think they've ultimately got a very similar root cause: the MUX package gets into a state where it can't be loaded, and that means the Terminal can't either. I _think_ this PowerShell 7 script might help debug? Could you run it and share the output? ```pwsh $results = @() $allPackages = Get-AppxPackage # First, dump all the XAML packages $allPackages | Where-Object { $_.PackageFullName -like "*xaml*" } write-output "----------------------------------------" # Iterate over all regkeys that start with "AppX" in HKEY_CURRENT_USER\Software\Classes $keys = Get-ChildItem HKCU:\Software\Classes | Where-Object { (Get-ItemProperty $_.PSPath) -like "*AppX*" } foreach ($key in $keys) { # if the name is LITERALLY "HKEY_CURRENT_USER\Software\Classes\*", skip it if ($key.Name -eq "HKEY_CURRENT_USER\Software\Classes\*") { continue } # Does the key have a "Shell/open" subkey? if (Test-Path "$($key.PSPath)\Shell\open") { # Look for "PackageId" under the shell/open subkey $packageId = (Get-ItemProperty "$($key.PSPath)\Shell\open").PackageId # Is the package installed? $package = $allPackages | Where-Object { $_.PackageFullName -eq $packageId } if ($package) { # Uncomment to list installed packages in Classes. Left commented out for privacy. # Write-Host "`e[32m$packageId`e[m -> $($package.PackageFullName)" continue } Write-Host "$key -> `e[31m$packageId`e[m wasn't found" $results += [PSCustomObject]@{ Key = $key.Name PackageId = $packageId } } else{ write-output "didn't find 'Shell\open' under `e[33m$key`e[m" } } write-output "----------------------------------------" write-output "Summary: These we couldn't find`n" write-output $results ``` addenda: * This is MSFT:46696372 * Failure ID `162f79ba-41e9-8d0b-0d78-7816f7ad69c1` * .03% of our 1.18 crashes, ~200 total. It's extremely rare.
Author
Owner

@xlinush commented on GitHub (Oct 31, 2023):

This feels a lot like #15583. Especially around the area of #15583 (comment).

What you're seeing is certainly a different crash stack, but I think they've ultimately got a very similar root cause: the MUX package gets into a state where it can't be loaded, and that means the Terminal can't either.

I think this PowerShell 7 script might help debug? Could you run it and share the output?

$results = @()
$allPackages = Get-AppxPackage
# First, dump all the XAML packages
$allPackages | Where-Object { $_.PackageFullName -like "*xaml*" }
write-output "----------------------------------------"
# Iterate over all regkeys that start with "AppX" in HKEY_CURRENT_USER\Software\Classes
$keys = Get-ChildItem HKCU:\Software\Classes | Where-Object { (Get-ItemProperty $_.PSPath) -like "*AppX*" }
foreach ($key in $keys) {
    # if the name is LITERALLY "HKEY_CURRENT_USER\Software\Classes\*", skip it
    if ($key.Name -eq "HKEY_CURRENT_USER\Software\Classes\*") {
        continue
    }
    # Does the key have a "Shell/open" subkey?
    if (Test-Path "$($key.PSPath)\Shell\open") {
        # Look for "PackageId" under the shell/open subkey
        $packageId = (Get-ItemProperty "$($key.PSPath)\Shell\open").PackageId
        # Is the package installed?
        $package = $allPackages | Where-Object { $_.PackageFullName -eq $packageId }
        if ($package) {
            # Uncomment to list installed packages in Classes. Left commented out for privacy.
            # Write-Host "`e[32m$packageId`e[m -> $($package.PackageFullName)"
            continue
        }
        Write-Host "$key -> `e[31m$packageId`e[m wasn't found"
        $results += [PSCustomObject]@{
            Key = $key.Name
            PackageId = $packageId
        }
    }
    else{
        write-output "didn't find 'Shell\open' under `e[33m$key`e[m"
    }
}
write-output "----------------------------------------"
write-output "Summary: These we couldn't find`n"
write-output $results

addenda:

  • This is MSFT:46696372
  • Failure ID 162f79ba-41e9-8d0b-0d78-7816f7ad69c1
  • .03% of our 1.18 crashes, ~200 total. It's extremely rare.

Thanks Mike, certainly, attaching script running results below:

 D:\scripts\TerminalDebug.ps1


Name              : Microsoft.UI.Xaml.2.3
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 2.32002.13001.0
PackageFullName   : Microsoft.UI.Xaml.2.3_2.32002.13001.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.3_2.32002.13001.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.3_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.3
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X86
ResourceId        :
Version           : 2.32002.13001.0
PackageFullName   : Microsoft.UI.Xaml.2.3_2.32002.13001.0_x86__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.3_2.32002.13001.0_x86__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.3_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.7
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 7.2207.21001.0
PackageFullName   : Microsoft.UI.Xaml.2.7_7.2207.21001.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.7_7.2207.21001.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.7_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.7
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 7.2208.15002.0
PackageFullName   : Microsoft.UI.Xaml.2.7_7.2208.15002.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.7_7.2208.15002.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.7_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.7
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X86
ResourceId        :
Version           : 7.2208.15002.0
PackageFullName   : Microsoft.UI.Xaml.2.7_7.2208.15002.0_x86__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.7_7.2208.15002.0_x86__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.7_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.6
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X86
ResourceId        :
Version           : 2.62112.3002.0
PackageFullName   : Microsoft.UI.Xaml.2.6_2.62112.3002.0_x86__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.6_2.62112.3002.0_x86__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.6_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.6
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 2.62112.3002.0
PackageFullName   : Microsoft.UI.Xaml.2.6_2.62112.3002.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.6_2.62112.3002.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.6_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.8
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 8.2304.12003.0
PackageFullName   : Microsoft.UI.Xaml.2.8_8.2304.12003.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2304.12003.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.8
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 8.2305.5001.0
PackageFullName   : Microsoft.UI.Xaml.2.8_8.2305.5001.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2305.5001.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.8
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X86
ResourceId        :
Version           : 8.2305.5001.0
PackageFullName   : Microsoft.UI.Xaml.2.8_8.2305.5001.0_x86__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2305.5001.0_x86__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.XAMLControlsGallery
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 1.2.26.0
PackageFullName   : Microsoft.XAMLControlsGallery_1.2.26.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.XAMLControlsGallery_1.2.26.0_x64__8wekyb3d8bbwe
IsFramework       : False
PackageFamilyName : Microsoft.XAMLControlsGallery_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
Dependencies      : {Microsoft.UI.Xaml.2.8_8.2306.22001.0_x64__8wekyb3d8bbwe,
                    Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe,
                    Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe,
                    Microsoft.VCLibs.140.00_14.0.32530.0_x64__8wekyb3d8bbwe...}
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.8
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 8.2306.22001.0
PackageFullName   : Microsoft.UI.Xaml.2.8_8.2306.22001.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2306.22001.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.8
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X86
ResourceId        :
Version           : 8.2306.22001.0
PackageFullName   : Microsoft.UI.Xaml.2.8_8.2306.22001.0_x86__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2306.22001.0_x86__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.1
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 2.11906.6001.0
PackageFullName   : Microsoft.UI.Xaml.2.1_2.11906.6001.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.1_2.11906.6001.0_x64__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.1_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.2.1
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X86
ResourceId        :
Version           : 2.11906.6001.0
PackageFullName   : Microsoft.UI.Xaml.2.1_2.11906.6001.0_x86__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.1_2.11906.6001.0_x86__8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.2.1_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

Name              : Microsoft.UI.Xaml.CBS
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 9.2308.4001.0
PackageFullName   : Microsoft.UI.Xaml.CBS_9.2308.4001.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Windows\SystemApps\Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe
IsFramework       : True
PackageFamilyName : Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : True
IsPartiallyStaged : False
SignatureKind     : System
Status            : Ok

----------------------------------------
HKEY_CURRENT_USER\Software\Classes\AppX3xxs313wwkfjhythsb8q46xdsq8d2cvv -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppX47jwqdafzcxw9wm0mbb5cev2eav5b1je -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppX4hxtad77fbk3jkkeerkrm0ze94wjf3s9 -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppX7rm9drdg8sk7vqndwj3sdjw11x96jc0y -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppX8zw7xct41bx2wrswqekb78rm243h02yh -> e[31mMicrosoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppX90nv6nhay5n6a98fnetv7tpk64pp35es -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXajsqtzxc3swn530gvypre9jp1rp1d2tp -> e[31mMicrosoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXcb6e5re383zqpgggd2grt6vrv627a4wt -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXd4nrz8ff68srnhf9t5a8sbjyar1cr723 -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXde74bfzw9j31bzhcvsrxsyjnhhbq66cs -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXdn5b0j699ka5fqvrr3pgjad0evqarm6d -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXe862j7twqs4aww05211jaakwxyfjx4da -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXjk8mdggdq4vg6dgf22p49ekvekryekt2 -> e[31mMicrosoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXjqedpv07t7z06q4p8d1w11gptbb3wee1 -> e[31mMicrosoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXq0fevzme2pys62n3e0fbqa7peapykr8v -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXsf0d8xs4xz53mhyq7wyajbmrskt080m7 -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXvsddybna5mfqpzfzrh0x2nnv0v7ettv3 -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXx6a0med6y43gv0vn6qa7r3vdg4cg3bnv -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found
HKEY_CURRENT_USER\Software\Classes\AppXzn6aajbcrxx2qvxjawp7v0xnj1zdzdcz -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found
----------------------------------------
Summary: These we couldn't find


Key       : HKEY_CURRENT_USER\Software\Classes\AppX3xxs313wwkfjhythsb8q46xdsq8d2cvv
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppX47jwqdafzcxw9wm0mbb5cev2eav5b1je
PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppX4hxtad77fbk3jkkeerkrm0ze94wjf3s9
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppX7rm9drdg8sk7vqndwj3sdjw11x96jc0y
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppX8zw7xct41bx2wrswqekb78rm243h02yh
PackageId : Microsoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppX90nv6nhay5n6a98fnetv7tpk64pp35es
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXajsqtzxc3swn530gvypre9jp1rp1d2tp
PackageId : Microsoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXcb6e5re383zqpgggd2grt6vrv627a4wt
PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXd4nrz8ff68srnhf9t5a8sbjyar1cr723
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXde74bfzw9j31bzhcvsrxsyjnhhbq66cs
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXdn5b0j699ka5fqvrr3pgjad0evqarm6d
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXe862j7twqs4aww05211jaakwxyfjx4da
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXjk8mdggdq4vg6dgf22p49ekvekryekt2
PackageId : Microsoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXjqedpv07t7z06q4p8d1w11gptbb3wee1
PackageId : Microsoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXq0fevzme2pys62n3e0fbqa7peapykr8v
PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXsf0d8xs4xz53mhyq7wyajbmrskt080m7
PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXvsddybna5mfqpzfzrh0x2nnv0v7ettv3
PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXx6a0med6y43gv0vn6qa7r3vdg4cg3bnv
PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe


Key       : HKEY_CURRENT_USER\Software\Classes\AppXzn6aajbcrxx2qvxjawp7v0xnj1zdzdcz
PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe
@xlinush commented on GitHub (Oct 31, 2023): > This feels a lot like #15583. Especially around the area of [#15583 (comment)](https://github.com/microsoft/terminal/issues/15583#issuecomment-1708760392). > > What you're seeing is certainly a different crash stack, but I think they've ultimately got a very similar root cause: the MUX package gets into a state where it can't be loaded, and that means the Terminal can't either. > > I _think_ this PowerShell 7 script might help debug? Could you run it and share the output? > > ```powershell > $results = @() > $allPackages = Get-AppxPackage > # First, dump all the XAML packages > $allPackages | Where-Object { $_.PackageFullName -like "*xaml*" } > write-output "----------------------------------------" > # Iterate over all regkeys that start with "AppX" in HKEY_CURRENT_USER\Software\Classes > $keys = Get-ChildItem HKCU:\Software\Classes | Where-Object { (Get-ItemProperty $_.PSPath) -like "*AppX*" } > foreach ($key in $keys) { > # if the name is LITERALLY "HKEY_CURRENT_USER\Software\Classes\*", skip it > if ($key.Name -eq "HKEY_CURRENT_USER\Software\Classes\*") { > continue > } > # Does the key have a "Shell/open" subkey? > if (Test-Path "$($key.PSPath)\Shell\open") { > # Look for "PackageId" under the shell/open subkey > $packageId = (Get-ItemProperty "$($key.PSPath)\Shell\open").PackageId > # Is the package installed? > $package = $allPackages | Where-Object { $_.PackageFullName -eq $packageId } > if ($package) { > # Uncomment to list installed packages in Classes. Left commented out for privacy. > # Write-Host "`e[32m$packageId`e[m -> $($package.PackageFullName)" > continue > } > Write-Host "$key -> `e[31m$packageId`e[m wasn't found" > $results += [PSCustomObject]@{ > Key = $key.Name > PackageId = $packageId > } > } > else{ > write-output "didn't find 'Shell\open' under `e[33m$key`e[m" > } > } > write-output "----------------------------------------" > write-output "Summary: These we couldn't find`n" > write-output $results > ``` > > addenda: > > * This is [MSFT:46696372](https://task.ms/46696372) > * Failure ID `162f79ba-41e9-8d0b-0d78-7816f7ad69c1` > * .03% of our 1.18 crashes, ~200 total. It's extremely rare. Thanks Mike, certainly, attaching script running results below: ```powershell ➜ D:\scripts\TerminalDebug.ps1 Name : Microsoft.UI.Xaml.2.3 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 2.32002.13001.0 PackageFullName : Microsoft.UI.Xaml.2.3_2.32002.13001.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.3_2.32002.13001.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.3_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.3 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X86 ResourceId : Version : 2.32002.13001.0 PackageFullName : Microsoft.UI.Xaml.2.3_2.32002.13001.0_x86__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.3_2.32002.13001.0_x86__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.3_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.7 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 7.2207.21001.0 PackageFullName : Microsoft.UI.Xaml.2.7_7.2207.21001.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.7_7.2207.21001.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.7_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.7 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 7.2208.15002.0 PackageFullName : Microsoft.UI.Xaml.2.7_7.2208.15002.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.7_7.2208.15002.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.7_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.7 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X86 ResourceId : Version : 7.2208.15002.0 PackageFullName : Microsoft.UI.Xaml.2.7_7.2208.15002.0_x86__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.7_7.2208.15002.0_x86__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.7_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.6 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X86 ResourceId : Version : 2.62112.3002.0 PackageFullName : Microsoft.UI.Xaml.2.6_2.62112.3002.0_x86__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.6_2.62112.3002.0_x86__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.6_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.6 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 2.62112.3002.0 PackageFullName : Microsoft.UI.Xaml.2.6_2.62112.3002.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.6_2.62112.3002.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.6_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.8 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 8.2304.12003.0 PackageFullName : Microsoft.UI.Xaml.2.8_8.2304.12003.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2304.12003.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.8 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 8.2305.5001.0 PackageFullName : Microsoft.UI.Xaml.2.8_8.2305.5001.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2305.5001.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.8 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X86 ResourceId : Version : 8.2305.5001.0 PackageFullName : Microsoft.UI.Xaml.2.8_8.2305.5001.0_x86__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2305.5001.0_x86__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.XAMLControlsGallery Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 1.2.26.0 PackageFullName : Microsoft.XAMLControlsGallery_1.2.26.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.XAMLControlsGallery_1.2.26.0_x64__8wekyb3d8bbwe IsFramework : False PackageFamilyName : Microsoft.XAMLControlsGallery_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False Dependencies : {Microsoft.UI.Xaml.2.8_8.2306.22001.0_x64__8wekyb3d8bbwe, Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe, Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe, Microsoft.VCLibs.140.00_14.0.32530.0_x64__8wekyb3d8bbwe...} IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.8 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 8.2306.22001.0 PackageFullName : Microsoft.UI.Xaml.2.8_8.2306.22001.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2306.22001.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.8 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X86 ResourceId : Version : 8.2306.22001.0 PackageFullName : Microsoft.UI.Xaml.2.8_8.2306.22001.0_x86__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.8_8.2306.22001.0_x86__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.8_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.1 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 2.11906.6001.0 PackageFullName : Microsoft.UI.Xaml.2.1_2.11906.6001.0_x64__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.1_2.11906.6001.0_x64__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.1_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.2.1 Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X86 ResourceId : Version : 2.11906.6001.0 PackageFullName : Microsoft.UI.Xaml.2.1_2.11906.6001.0_x86__8wekyb3d8bbwe InstallLocation : C:\Program Files\WindowsApps\Microsoft.UI.Xaml.2.1_2.11906.6001.0_x86__8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.2.1_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok Name : Microsoft.UI.Xaml.CBS Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : X64 ResourceId : Version : 9.2308.4001.0 PackageFullName : Microsoft.UI.Xaml.CBS_9.2308.4001.0_x64__8wekyb3d8bbwe InstallLocation : C:\Windows\SystemApps\Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe IsFramework : True PackageFamilyName : Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : True IsPartiallyStaged : False SignatureKind : System Status : Ok ---------------------------------------- HKEY_CURRENT_USER\Software\Classes\AppX3xxs313wwkfjhythsb8q46xdsq8d2cvv -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppX47jwqdafzcxw9wm0mbb5cev2eav5b1je -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppX4hxtad77fbk3jkkeerkrm0ze94wjf3s9 -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppX7rm9drdg8sk7vqndwj3sdjw11x96jc0y -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppX8zw7xct41bx2wrswqekb78rm243h02yh -> e[31mMicrosoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppX90nv6nhay5n6a98fnetv7tpk64pp35es -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXajsqtzxc3swn530gvypre9jp1rp1d2tp -> e[31mMicrosoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXcb6e5re383zqpgggd2grt6vrv627a4wt -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXd4nrz8ff68srnhf9t5a8sbjyar1cr723 -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXde74bfzw9j31bzhcvsrxsyjnhhbq66cs -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXdn5b0j699ka5fqvrr3pgjad0evqarm6d -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXe862j7twqs4aww05211jaakwxyfjx4da -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXjk8mdggdq4vg6dgf22p49ekvekryekt2 -> e[31mMicrosoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXjqedpv07t7z06q4p8d1w11gptbb3wee1 -> e[31mMicrosoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXq0fevzme2pys62n3e0fbqa7peapykr8v -> e[31mMicrosoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXsf0d8xs4xz53mhyq7wyajbmrskt080m7 -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXvsddybna5mfqpzfzrh0x2nnv0v7ettv3 -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXx6a0med6y43gv0vn6qa7r3vdg4cg3bnv -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found HKEY_CURRENT_USER\Software\Classes\AppXzn6aajbcrxx2qvxjawp7v0xnj1zdzdcz -> e[31mMicrosoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwee[m wasn't found ---------------------------------------- Summary: These we couldn't find Key : HKEY_CURRENT_USER\Software\Classes\AppX3xxs313wwkfjhythsb8q46xdsq8d2cvv PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppX47jwqdafzcxw9wm0mbb5cev2eav5b1je PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppX4hxtad77fbk3jkkeerkrm0ze94wjf3s9 PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppX7rm9drdg8sk7vqndwj3sdjw11x96jc0y PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppX8zw7xct41bx2wrswqekb78rm243h02yh PackageId : Microsoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppX90nv6nhay5n6a98fnetv7tpk64pp35es PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXajsqtzxc3swn530gvypre9jp1rp1d2tp PackageId : Microsoft.YourPhone_1.23091.93.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXcb6e5re383zqpgggd2grt6vrv627a4wt PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXd4nrz8ff68srnhf9t5a8sbjyar1cr723 PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXde74bfzw9j31bzhcvsrxsyjnhhbq66cs PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXdn5b0j699ka5fqvrr3pgjad0evqarm6d PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXe862j7twqs4aww05211jaakwxyfjx4da PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXjk8mdggdq4vg6dgf22p49ekvekryekt2 PackageId : Microsoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXjqedpv07t7z06q4p8d1w11gptbb3wee1 PackageId : Microsoft.YourPhone_1.22052.136.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXq0fevzme2pys62n3e0fbqa7peapykr8v PackageId : Microsoft.MicrosoftEdge_44.25858.1000.0_neutral__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXsf0d8xs4xz53mhyq7wyajbmrskt080m7 PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXvsddybna5mfqpzfzrh0x2nnv0v7ettv3 PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXx6a0med6y43gv0vn6qa7r3vdg4cg3bnv PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe Key : HKEY_CURRENT_USER\Software\Classes\AppXzn6aajbcrxx2qvxjawp7v0xnj1zdzdcz PackageId : Microsoft.Windows.Photos_2022.31070.26005.0_x64__8wekyb3d8bbwe ```
Author
Owner

@zadjii-msft commented on GitHub (Nov 1, 2023):

(I'm following up with the XAML team internally. I'm firmly confident this isn't a Terminal issue, but some broader issue with framework packages or deployment or something.)

@zadjii-msft commented on GitHub (Nov 1, 2023): (I'm following up with the XAML team internally. I'm firmly confident this isn't a _Terminal_ issue, but some broader issue with framework packages or deployment or _something_.)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#20751