Home >System Tutorial >Windows Series >How to fix WIN10 tiles that cannot be opened

How to fix WIN10 tiles that cannot be opened

PHPz
PHPzforward
2024-03-28 09:20:06612browse

PHP editor Zimo introduced that the operation methods to repair the WIN10 disk that cannot be opened include resetting the disk, checking for errors, clearing the disk and rebuilding the file system. These methods can effectively solve the problem of the disk not opening and restore your computer to normal operation.

1. Enter [PowerShell] in the search bar of the taskbar, right-click on the search result Windows PowerShell and select [Run as administrator]. As shown in the figure below:

How to fix WIN10 tiles that cannot be opened

2. In the window that opens, copy the following code to the Windows PowerShell (Administrator) window according to the actual situation, and press Enter to confirm execution.

(1) Applicable to store Apps issues

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register [$($_.InstallLocation)AppXManifest.xml]}

(2) Applicable to Windows App Store issues

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register [$($_.InstallLocation)AppXManifest.xml]}

How to fix WIN10 tiles that cannot be opened

The above is the detailed content of How to fix WIN10 tiles that cannot be opened. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:zol.com.cn. If there is any infringement, please contact admin@php.cn delete