How do I fix grayed out live tiles?
My Windows 10 live tiles are all grayed out. If I click on any of them it says to wait a few minutes and try again as they're being updated. They've been like this for a couple weeks now. I've run the Windows App Store repair tool and it found/fixed a corrupt cache, but the problem remains. What else should I investigate?
My Windows 10 live tiles are all grayed out. If I click on any of them it says to wait a few minutes and try again as they're being updated.
You can utilize PowerShell to reinstall all of the built-in Windows apps for all accounts. Under similar circumstances, that has consistently worked for me in the past. Use the following procedures:
- Press +S
- Type PowerShell within the search field
- Right-click the result titled Windows PowerShell and choose Run as Administrator
- Acknowledge the subsequent UAC prompt, as necessary
Copy-and-paste the following command into the PowerShell window and press Enter:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Watch the reinstall processes scroll by and wait for them to finish:
Reboot and verify the functionality of the built-in Windows apps
(Source: Reinstall and Re-register Apps in Windows 10)