Solución al error de Windows Store (0x80D03002)
Abre Windows Powershell como administrador y copia y pega el siguiente comando:
Get-AppXPackage -AllUsers -Name Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register «$($_.InstallLocation)\AppXManifest.xml» -Verbose}
Después abre el símbolo del sistema (También llamado «cmd» o «consola») como administrador y escribe los siguientes comandos:
«net stop wuauserv»
«net stop cryptSVC»
«net stop bits»
«net stop msiserver»
«ren C:\Windows\SoftwareDistribution SoftwareDistribution.old»
«ren C:\Windows\System32\catroot2 catroot2.old»
«net start wuauserv»
«net start cryptSVC»
«net start bits»
«net start msiserver»
Después de hacer esto, reinicia el ordenador.
Como ejecutar una aplicación como administrador:
https://repararordenador.online/como-iniciar-una-aplicacion-en-modo-administrador/
Como copiar y pegar un comando en Windows PowerShell:
https://repararordenador.online/como-copiar-y-pegar-un-comando-en-windows-powershell/