Solución al error en Windows Store (0x800700A1)
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:
«SC config wuauserv start=auto»
«SC config bits start=auto»
«SC config cryptsvc start=auto»
«SC config trustedinstaller start=auto»
«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»
Ahora abre Windows Powershell como administrador otra vez y escribe el siguiente comando:
«wuauclt.exe /updatenow»
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/