This tutorial will help you fix Xbox App Sign in Error 0x80D03002 in Windows 10.
Works on Laptops, PCs and Tablets made by Samsung, Lenovo, Toshiba, Asus, Acer, HP, Dell, Alienware.
Link: https://www.microsoft.com/en-us/p/xbo...
Copy and paste 1:
Get-AppXPackage -AllUsers -Name Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -Verbose}
Copy and paste 2:
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Copy and paste 3:
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Works on Laptops, PCs and Tablets made by Samsung, Lenovo, Toshiba, Asus, Acer, HP, Dell, Alienware.