What stands out here is that the issue begins after domain join, even on a fresh Windows 11 24H2 install and even in an OU without custom GPOs.
That strongly suggests this is not OS corruption, but an AppX / Windows App Runtime provisioning issue that is triggered by domain environment conditions.
Modern apps like:
- Photos
New Notepad
Snipping Tool
are UWP/AppX packages that depend on:
Windows App Runtime
Microsoft Store framework components
Per-user AppX provisioning
Proper package registration during first sign-in
The error:
"Package failed updates, dependency or conflict validations"
is typically seen when:
AppX registration fails for the user profile
Windows App Runtime is not properly provisioned
Store framework components are blocked or incomplete
Network or firewall prevents Store licensing handshake
Since your per-user re-registration fixes it, that indicates the base OS image is fine — the issue is occurring during profile provisioning after domain join.
Things I would check:
- Store connectivity in the domain environment
- Are Microsoft Store endpoints reachable?
- Is outbound access restricted?
- Is there SSL inspection interfering?
- AppX provisioning state
Run: Get-AppxProvisionedPackage`` -Online | Where-Object DisplayName -like "*Windows.Photos*"
Confirm the package is properly provisioned at the image level.
- Windows App Runtime registration
Since reinstalling WindowsAppRuntime fixes it, verify whether:
The runtime is failing to register during first sign-in
Or if updates are blocked during initial provisioning
Store auto-update policy
Even if no explicit GPOs are set, check if:
Computer Configuration → Administrative Templates → Windows Components → Store "Turn off Automatic Download and Install of updates"
is configured at domain level.
The fact that this happens across multiple hardware vendors and persists across fresh installs strongly suggests an environmental factor introduced by domain membership rather than a hardware or OS image defect.
Since per-user re-registration resolves it, the focus should be on why AppX provisioning or Windows App Runtime registration is failing during initial profile creation in the domain environment.