While the Windows Store offers many useful apps, it hasn't started offering desktop apps yet. Apart from stuck downloads, you may also encounter some other issues with Windows Store.
If your app updates are still interrupted, here are a few things you can try.
Windows allows you to delete the Store's local cache. To do this, you need to open a command prompt. This can be done by right-clicking on the Start menu and opening Command Prompt as administrator. You can also press Windows key X.
In the command prompt, type the following code and press enter.
wsreset.exe
This should take approximately 30 seconds and the Windows Store will open when it is complete. You can check if the update is valid.
You can also try the Store Troubleshooter. Although this troubleshooter isn't built-in, you can download it for free from Microsoft. This is available in Windows 8 and 10 versions.
After downloading, install and run the troubleshooter. It will scan for any issues and let you know if the issue has been resolved. You can then open the Windows Store again and see if your app updates are downloading.
If the above steps don’t work, you can re-register the Windows Store. For this, you need PowerShell. It is a scripting language built into the system. This is slightly different than Command Prompt; however, it's not difficult to figure out.
You will need to run PowerShell with administrator privileges. If you're using Windows 10, copy and paste the following code into PowerShell and press Enter.
"& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
If it is Windows 8, you need to enter the following code and press Enter.
Add-AppxPackage-DisableDevelopmentMode-Register$Env:SystemRoot\WinStore\AppxManifest.XML
The above is the detailed content of How to fix stuck downloads in Windows Store?. For more information, please follow other related articles on the PHP Chinese website!