Hello, if this is the situation, we can try other options -
- Click Windows + R key, type services.msc and click ok.
- Locate Device Association Service > make sure the service is running and set the startup type to Automatic.
- If the service is already running, restart the service.
If the issue persists, open a PowerShell (Administrator) Window and execute the command below.
PowerShell
Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
This command may take some time to finish. Ignore the errors that are displayed in Red. Once done, restart your computer.
This command can help repair the Windows Shell Experience Host by re-registering all built-in Windows apps, including ShellExperienceHost.exe, which I believe is corrupted. This command might take a few minutes, depending on the system performance and apps installed.
Let me know how it goes.