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.
Você pode utilizar o PowerShell para reinstalar todos os aplicativos internos do Windows para todas as contas. Em circunstâncias semelhantes, isso sempre funcionou para mim no passado. Use os seguintes procedimentos:
- 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
(Fonte: Reinstale e registre novamente os aplicativos no Windows 10 )