AppReadiness error event 10

TomaszW-0873 136 Reputation points
2025-05-05T20:51:52.55+00:00

I have a problem with AppReadiness in Windows Server 2025
I have the folowing error in Event Journal:

Operacja Appx „RegisterPackageAsync” na „Microsoft.Windows.ContentDeliveryManager_10.0.26100.1_neutral_neutral_cw5n1h2txyewy” nie powiodła się dla użytkownika „S-1-5-21-372703170-1409704543-3497060222-1103” — C:\Windows\SystemApps\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\AppxManifest.xml(14,6): error 0x80073B0C: Cannot register the Microsoft.Windows.ContentDeliveryManager_10.0.26100.1_neutral_neutral_cw5n1h2txyewy package because the following error was encountered while determining whether the ms-resource:PublisherDisplayName string resource could be localized: Parametr ResourceMap lub NamedResource zawiera element, który nie ma domyślnego lub neutralnego zasobu. Check that the string resource is defined and that there is at least one instance defined in the resources.pri file contained in this package.. (Błąd: Nie można zarejestrować pakietu.)

Windows Server Windows desktop and shell experience
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Henry Mai 310 Reputation points
    2025-05-07T09:21:44.71+00:00

    Hi, I'm Henry! I will help you with this.

    It looks like you're encountering AppReadiness error event 10 in Windows Server 2025, specifically related to the Microsoft.Windows.ContentDeliveryManager package. This error occurs when Windows fails to register the package due to missing or improperly localized resources.

    1. Reinstall System Apps via PowerShell
    • Open PowerShell as Administrator and run the following command to re-register all system apps: Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}
    • This may resolve missing resource issues.
    1. Manually Remove & Reinstall the Problematic Package
    • Open PowerShell as Administrator and run: Get-AppxPackage *ContentDeliveryManager* | Remove-AppxPackage
    • Then reinstall it using: Add-AppxPackage -register "C:\Windows\SystemApps\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\AppxManifest.xml" -DisableDevelopmentMode
    1. Check Event Viewer for Additional Errors
    • Open Event Viewer (eventvwr.msc) and look for related errors under Application and System logs.
    1. Perform a System File Check & Repair
    • Run the following commands in Command Prompt (Admin):
    • sfc /scannow
    • DISM.exe /Online /Cleanup-image /Restorehealth

    Let me know if any of these solutions work for you

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.