How to Fix Unable to Login to Microsoft Store in Windows 10 [2021]
In this tutorial you’ll learn how to fix Unable to Login to Microsoft Store in Windows 10. If you are not able to login to your Microsoft Store do to your connection of because your Windows Store is corrupt. Don’t wory about it, this tutoriak will help you resolve this issue.
If you are having an issue where whenever you try to login to the Microsoft Store app and receive a popup that says ‘Let’s get you signed in,’ and is otherwise blank save for a ‘continue’ button. Clicking this button does nothing but close the popup window then this step by step troubleshooting guide wi’ll you fix this problem.
Link:
This troubleshooting guide will work on Windows 10, windows 7, windows 8, mac, linux operating systems and desktops, laptops, tables and computers manufactured by the following brands: , Dell, Hewlett Packard, MSI, Alienware, MSI, Toshiba, Acer, Lenovo, razer, huawei among others.
Copy and paste this
# Get all the provisioned packages
$Packages = (get-item ‘HKLM:SoftwareMicrosoftWindowsCurrentVersionAppxAppxAllUserStoreApplications’) | Get-ChildItem
# Filter the list if provided a filter
$PackageFilter = $args[0]
if ([string]::IsNullOrEmpty($PackageFilter))
{
echo “No filter specified, attempting to re-register all provisioned apps.”
}
else
{
$Packages = $Packages | where {$_.Name -like $PackageFilter}
if ($Packages -eq $null)
{
echo “No provisioned apps match the specified filter.”
exit
}
else
{
echo “Registering the provisioned apps that match $PackageFilter”
}
}
ForEach($Package in $Packages)
{
# get package name & path
$PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName
$PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path))
# register the package
echo “Attempting to register package: $PackageName”
Add-AppxPackage -register $PackagePath -DisableDevelopmentMode
} .
Concluzion: How to Fix Unable to Login to Microsoft Store in Windows 10 [2021] – Unable to Login to Microsoft Store,Unable to Login to Microsoft Store widows 10,Unable to Login to Microsoft Store windows 10 fix,Unable to Login to Microsoft Store fix,cannot login Microsoft Store,can’t login Microsoft Store,cannot login Microsoft Store fix,can’t login windows Store fix,Can’t sign into the microsoft store app,Can’t sign in microsoft store app fix,windows 10,Dell,Hewlett Packard,MSI,Alienware,Toshiba,Acer,Lenovo,razer,laptop,pc
To see the full content, share this page by clicking one of the buttons below |