How to fix Microsoft Store not working error

The Microsoft Store (Windows Store) isn’t the most popular app store, as it’s riddled with bugs, issues, and tends to be unstable. However, it does have some good content, and the user interface and overall experience have improved a lot since the launch of Windows 11. Still, if the Microsoft Store isn’t working right now, here’s how to fix it.

Note : The process sometimes differs between Windows 10 and 11, so the article will include instructions for both platforms (where available).

Fix Windows Store not working error

Why is Microsoft Store down?

Here are the main reasons why you may find it difficult to work with the Microsoft Store.

  • Network connection blocked by error code 0x80131500
  • Microsoft Store time is not synchronized correctly with system time
  • Don't “own” the WindowsApps folder as a user
  • Windows Store cache full or corrupted
  • There is a mismatch between the proxy server /VPN IP address and the system IP address.
  • Unfixable Store issues that won't go away without a reinstall
  • Waiting for Windows 11/10 update
  • Internet access is unreliable.

How to fix Microsoft Store not working

Before performing the proper fixes, there is a small checklist of things you need to confirm:

  • Windows has no pending updates
  • UAC (User Account Control) is enabled
  • Your graphics card/GPU driver is up to date.

If all of these are in place but Windows Store is still not working, proceed with the following fixes.

1. Change DNS address

One of the more common error messages that can appear when the Microsoft Store isn't working is error “0x80131500”. This can happen if your PC is connecting to the Internet through a number of DNS servers, which are automatically assigned by your ISP and/or home network setup.

To change the DNS server address, go to Settings (click Start then the gear icon) > Network & Internet > Change adapter options .

How to fix Microsoft Store not working error
Access Change adapter options

Next, right-click on your network connection, select Properties , then in the new window, scroll down to “Internet Protocol Version 4 (TCP/IPv4)” , right-click on it and select Properties.

How to fix Microsoft Store not working error
Go to the properties of the network connection

In the Preferred DNS server box , enter 1.1.1.1 , which is Cloudfare's public DNS resolver. Click OK and hopefully the Microsoft Store will be back up and running.

How to fix Microsoft Store not working error
Enter address 1.1.1.1

You can also try using Google's public DNS servers at the following IP addresses:

  • 8.8.8.8
  • 8.8.4.4

2. Change your computer's time settings

One of the strangest but most effective ways to fix Windows 10 Store issues is to set your computer’s clock to the correct time. When the Microsoft Store starts, it tries to synchronize the app’s time with the system’s. If the time doesn’t match, the system will sometimes refuse to launch the Microsoft Store. This fix is ​​also very easy.

1. To update the time for Windows 10 , right-click on the taskbar and select Adjust date/time.

How to fix Microsoft Store not working error

2. First, turn off the Set time automatically feature by clicking the toggle button below.

3. Once the system has processed your request, turn the feature back on. The system time will then be updated again. Make sure your time zone is set correctly!

How to fix Microsoft Store not working error

Once done, try opening the Windows Store again and see if the issues persist.

3. Set ownership for the WindowsApps folder

In practice, it turns out that sometimes the problem is that you don't have "ownership" of the WindowsApp files on your computer. It may sound strange, but sometimes files are modified to not allow you to access them, even though they are on your computer and associated with your account. Setting your computer to give you full control of the WindowsApp folder will likely help the Microsoft Store do its job more accurately.

How to fix Microsoft Store not working error

You will have to command your computer to grant control of the file. This process is quite complicated and time-consuming, please refer to our article “ How to access the WindowsApps folder in Windows 10 ” for detailed steps.

4. Clear Windows Store cache

One of the easiest ways to fix Windows Store errors is to reset the cache . After a period of use, the cache may have become overloaded and cluttered, causing annoying errors on Windows Store.

Below WebTech360 will guide you through the steps to reset Windows Store on Windows 10.

To restart the cache, first press Ctrl + R to open the Run dialog box.

How to fix Microsoft Store not working error

Then in the Run dialog box, type the keyword wsreset and press Enter

How to fix Microsoft Store not working error

Next, a command prompt window will appear, indicating that Windows is resetting the Windows Store cache. Once this process is complete, the command prompt window will automatically close.

How to fix Microsoft Store not working error

Once the reset process is complete, you can restart Windows Store to see if the problem is fixed.

How to fix Microsoft Store not working error

Note:

This method can also be applied to fix Windows Store errors on Windows 8 and 8.1.

5. Reinstall Microsoft Store

It may sound basic, but sometimes the best way to fix a problem with the Microsoft Store is to reinstall the app. However, reinstalling the Microsoft Store isn't as simple as it is with most other apps. You'll need to uninstall the Microsoft Store using Powershell .

1. Press the Windows key to open the Start menu , type powershell , right-click the search result, then select Run as administrator.

2. In Powershell, enter the command get-appxpackage -allusers

3. Find the entry for Microsoft.WindowsStore and copy the information in the PackageFullName line to the clipboard.

How to fix Microsoft Store not working error

4. On a new line in Powershell, type remove-appxpackage followed by a space, then paste the information above PackageName that you copied. The result should look like this:

remove-appxpackage Microsoft.WindowsStore_22210.1401.6.0_x64__8wekyb3d8bbwe

However, this result may vary slightly depending on the Windows Store version number you are using.

5. Press Enter and Microsoft Store will disappear. Then, restart your computer.

6. To reinstall the Microsoft Store, you need to go back to Powershell with admin rights and enter the following:

Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

6. Turn off proxy server

If you're using a proxy server (or VPN ), this could be the reason your Microsoft Store isn't working because your computer's IP address doesn't match the details on your Windows account. So first, if you have a VPN turned on, turn it off. Proxy connections, on the other hand, are pretty stealthy and you may not even know they're on.

To check the status and disable your proxy connection, click the Start button , then click the settings icon. In the settings window, click Network & Internet Proxy in the left pane, then turn off the Use a proxy server option.

How to fix Microsoft Store not working error

7. Reset Microsoft Store

Starting with the Windows 11 version 22H2 update, you have the option to reset Windows apps, which will clear their cache and data, essentially making them like new. This is a bit more drastic than “WS Reset,” as it will wipe all your preferences, login details, settings, and more. (Don’t worry, apps you’ve installed from the Microsoft Store will still be there.)

1. To do this, right-click the Start button > Apps & Features , then scroll down to Microsoft Store in the Apps & Features list .

How to fix Microsoft Store not working error
List of Microsoft Store programs

2. Click on it, then select Advanced options and in the new window click on Reset. You will get a warning that you will lose data on this app. Click on Reset again and you are done.

How to fix Microsoft Store not working error
Reset Microsoft Store

8. Re-register Windows Store apps

Another way to reset a Windows Store app is to re-register it on your PC.

1. Click Start, type PowerShell  , and click Run as administrator .

2. In the PowerShell window, type the following command to re-register the Windows Store on your PC:

Get-AppXPackage *Microsoft.WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
How to fix Microsoft Store not working error
Re-register Windows Store apps

3. Windows Store is re-registered and hopefully working fine again.

9. Use the Windows Store Apps Troubleshooter

Microsoft recommends using the troubleshooter for any untraceable issues in the operating system. You can use a specific troubleshooter in Windows 11 called “Windows Store Apps”.

1. Click Settings > System > Troubleshoot.

How to fix Microsoft Store not working error
Click Settings > System > Troubleshoot

2. Select the Other troubleshooters menu item and scroll down to see the troubleshooter named “Windows Store Apps” .

3. Click the Run option for Windows Store Apps .

How to fix Microsoft Store not working error
Click the Run option for Windows Store Apps

4. Windows Store Apps will take a few seconds to detect Store-related issues. If it finds any issues, they will be fixed automatically.

How to fix Microsoft Store not working error
Detect Windows Store apps

5. If the problem cannot be resolved, Microsoft will suggest further actions that may help.

How to fix Microsoft Store not working error
Solutions for Windows Store apps

10. Troubleshoot Internet Access

Is your WiFi connection having issues? Sometimes when your network is down or slow, it can affect your experience with the Microsoft Store (although you can still access its apps in your browser). Fixing your internet issues will get you back on track with your apps inside the Store.

1. Go to Settings > System > Troubleshoot > Other troubleshooters .

2. Select the Run option for the Internet Connection menu.

How to fix Microsoft Store not working error
Internet Connection Troubleshooter

3. Test a sample website with the troubleshooter. If there are no problems, your Internet connection is working fine.

4. Restart your device and check if the Store is working properly.

How to fix Microsoft Store not working error
Check Internet connection website

11. Update Windows 11/10 to the latest version

If you haven't updated your Windows 11/10 operating system in a while, there may be some Microsoft Store updates waiting for you to process. Complete them to enjoy smooth operation with installed applications.

These fixes are quite useful, not only for Microsoft Store, but also can be applied to most UWP/Windows apps on your system. Note that when performing these measures, you should not use proxy servers for certain apps that depend on the Internet, while the Reset function can be applied to any UWP app . Good luck!

Good luck!

See more articles below:

Tags: #System
Sign up and earn $1000 a day ⋙

Leave a Comment

Recover Deleted Data with Recuva Portable in Windows 7

Recover Deleted Data with Recuva Portable in Windows 7

In the following article, we will present the basic operations to recover deleted data in Windows 7 with the support tool Recuva Portable. With Recuva Portable, you can store it in any convenient USB, and use it whenever needed. The tool is compact, simple, easy to use with some of the following features:

How to delete duplicate files to save computer memory using CCleaner

How to delete duplicate files to save computer memory using CCleaner

CCleaner scans for duplicate files in just a few minutes, then lets you decide which ones are safe to delete.

10 Windows Settings You Should Never Leave as Default

10 Windows Settings You Should Never Leave as Default

Windows doesn't come with security set up by default, which means there are some default settings you need to change.

How to Download, Update, and Troubleshoot USB Drivers on Windows 10

How to Download, Update, and Troubleshoot USB Drivers on Windows 10

USB devices have become indispensable in everyday life, allowing us to connect a wide variety of essential hardware to our PCs.

How to Lock Guest Wi-Fi Network So No One Can Spy

How to Lock Guest Wi-Fi Network So No One Can Spy

If you properly lock down your guest Wi-Fi network, you can share your Internet connection with any visitors without sharing any other information.

Lost Admin rights on Windows 10, heres how to fix it

Lost Admin rights on Windows 10, heres how to fix it

For some reason, your Windows 10 computer lost Admin rights, every time you open an application on the screen you receive an error message. So how to restore lost Admin rights, please refer to the article below of WebTech360.

3 ways to turn off Windows 11 firewall

3 ways to turn off Windows 11 firewall

In this article, WebTech360 will guide you how to turn off the firewall on Windows 11.

Windows 11 22H2: Moment 1 update with many notable features

Windows 11 22H2: Moment 1 update with many notable features

After a long wait, the first major update of Windows 11 has officially been released.

How to fix Unhandled Exception Has Occurred error on Windows 10

How to fix Unhandled Exception Has Occurred error on Windows 10

The Unhandled exception has occurred error is not related to a specific application, making it more difficult to resolve. This article will guide you through some ways to fix the Unhandled exception has occurred error on Windows 10.

9 Ways to Convert MOV Files to MP4

9 Ways to Convert MOV Files to MP4

These days, most PCs and Apple devices can handle both MOV and MP4 files, at least to some extent. However, the need to convert MOV video files to MP4 files has not diminished.

What is end-to-end encryption? How does it work?

What is end-to-end encryption? How does it work?

Recognizing this need, major online messaging services use a technique called end-to-end encryption, to secure and protect users' conversations.

How to set different wallpapers on each monitor Windows 10/11

How to set different wallpapers on each monitor Windows 10/11

Setting up multiple monitors on Windows is quite simple and only takes a few minutes to do. After setting up multi-monitor mode (multiple screens), you can set up separate wallpapers for each screen. To do this, please refer to the article below from WebTech360.

How to use Command Prompt, how to use cmd on Windows

How to use Command Prompt, how to use cmd on Windows

Hidden deep within Windows is a world of command lines that few people know about. In this article, we will guide you on how to fix errors and make your computer more secure using the cmd command line tool.

How to enter BIOS (UEFI) on Windows 10, how to fix the error of not being able to enter BIOS Win 10

How to enter BIOS (UEFI) on Windows 10, how to fix the error of not being able to enter BIOS Win 10

Instructions on how to enter BIOS on Windows 10 for you, with video illustration.

How to use hidden video editor on Windows 11

How to use hidden video editor on Windows 11

Clipchamp is the default video editor on Windows 11, but if you just need to make a quick cut, split a simple photo, or add music to a clip, the classic editor inside the Photos Legacy app is a much better choice.

Recover Deleted Data with Recuva Portable in Windows 7

Recover Deleted Data with Recuva Portable in Windows 7

In the following article, we will present the basic operations to recover deleted data in Windows 7 with the support tool Recuva Portable. With Recuva Portable, you can store it in any convenient USB, and use it whenever needed. The tool is compact, simple, easy to use with some of the following features:

How to delete duplicate files to save computer memory using CCleaner

How to delete duplicate files to save computer memory using CCleaner

CCleaner scans for duplicate files in just a few minutes, then lets you decide which ones are safe to delete.

10 Windows Settings You Should Never Leave as Default

10 Windows Settings You Should Never Leave as Default

Windows doesn't come with security set up by default, which means there are some default settings you need to change.

How to Download, Update, and Troubleshoot USB Drivers on Windows 10

How to Download, Update, and Troubleshoot USB Drivers on Windows 10

USB devices have become indispensable in everyday life, allowing us to connect a wide variety of essential hardware to our PCs.

How to Lock Guest Wi-Fi Network So No One Can Spy

How to Lock Guest Wi-Fi Network So No One Can Spy

If you properly lock down your guest Wi-Fi network, you can share your Internet connection with any visitors without sharing any other information.

Lost Admin rights on Windows 10, heres how to fix it

Lost Admin rights on Windows 10, heres how to fix it

For some reason, your Windows 10 computer lost Admin rights, every time you open an application on the screen you receive an error message. So how to restore lost Admin rights, please refer to the article below of WebTech360.

3 ways to turn off Windows 11 firewall

3 ways to turn off Windows 11 firewall

In this article, WebTech360 will guide you how to turn off the firewall on Windows 11.

Windows 11 22H2: Moment 1 update with many notable features

Windows 11 22H2: Moment 1 update with many notable features

After a long wait, the first major update of Windows 11 has officially been released.

How to fix Unhandled Exception Has Occurred error on Windows 10

How to fix Unhandled Exception Has Occurred error on Windows 10

The Unhandled exception has occurred error is not related to a specific application, making it more difficult to resolve. This article will guide you through some ways to fix the Unhandled exception has occurred error on Windows 10.

9 Ways to Convert MOV Files to MP4

9 Ways to Convert MOV Files to MP4

These days, most PCs and Apple devices can handle both MOV and MP4 files, at least to some extent. However, the need to convert MOV video files to MP4 files has not diminished.

What is end-to-end encryption? How does it work?

What is end-to-end encryption? How does it work?

Recognizing this need, major online messaging services use a technique called end-to-end encryption, to secure and protect users' conversations.

How to set different wallpapers on each monitor Windows 10/11

How to set different wallpapers on each monitor Windows 10/11

Setting up multiple monitors on Windows is quite simple and only takes a few minutes to do. After setting up multi-monitor mode (multiple screens), you can set up separate wallpapers for each screen. To do this, please refer to the article below from WebTech360.

How to use Command Prompt, how to use cmd on Windows

How to use Command Prompt, how to use cmd on Windows

Hidden deep within Windows is a world of command lines that few people know about. In this article, we will guide you on how to fix errors and make your computer more secure using the cmd command line tool.

How to enter BIOS (UEFI) on Windows 10, how to fix the error of not being able to enter BIOS Win 10

How to enter BIOS (UEFI) on Windows 10, how to fix the error of not being able to enter BIOS Win 10

Instructions on how to enter BIOS on Windows 10 for you, with video illustration.

How to use hidden video editor on Windows 11

How to use hidden video editor on Windows 11

Clipchamp is the default video editor on Windows 11, but if you just need to make a quick cut, split a simple photo, or add music to a clip, the classic editor inside the Photos Legacy app is a much better choice.