Hello
Here are some steps you can try to fix the issue:
Run System File Checker (SFC): Open Command Prompt as an administrator and type sfc /scannow. This will scan for and attempt to repair corrupted system files.
Check Windows Search Service: Type services.msc in Run (Win + R), and press Enter. Find ‘Windows Search’, right-click it, and select Properties. Change the Startup type to Automatic (Delayed Start), then click Apply, and Start.
Restart Windows Explorer: Open Task Manager (Ctrl + Shift + Esc), find ‘Windows Explorer’, right-click it, and select Restart.
Repair Windows apps via PowerShell: Open Task Manager (Ctrl + Shift + Esc), click File, select ‘Run new task’, type: powershell, and check the box for ‘Create this task with administrative privileges’. Then run these commands one at a time:
Get-AppxPackage Microsoft.Windows.ShellExperienceHost | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
After running these commands, restart your computer.