본문 바로가기
3. 제품 리뷰 & 사용기

Windows 10 스토어 앱 복구 방법

by soosun 2020. 6. 2.

Windows PowerShell은 관리자 계정으로 열고 입력 내용을

Get-Appxpackage -Allusers *Store*

Add-AppxPackage -register "C:\Program Files\WindowsApps\*Store*\AppxManifest.xml" -DisableDevelopmentMode

 

이 아닌

Get-Appxpackage -Allusers *WindowsStore*

Add-AppxPackage -register "C:\Program Files\WindowsApps\*WindowsStore*\AppxManifest.xml" -DisableDevelopmentMode

#source: https://slic.tistory.com/675

 

------------------------------------------------------------------------------------------------------------------------

1. Reinstall Start Menu
Windows Key+X > Click Powershell (Admin) > Copy the below and paste into Powershell > Enter > Reboot your computer

Get-AppXPackage -Name Microsoft.Windows.ShellExperienceHost | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

2. Execute the steps given in the answer of Neuperlach and Reboot
https://answers.microsoft.com/en-us/windows/for...answers.microsoft.com/en-us/windows/forum/windows_10-start-win_menu/get-rid-of-ms-resourceappdisplayname/aa05469a-a676-4c08-a946-4ee5abf24b2c

3. Re-register All Store apps (You will get many Reds, ignore them)
Windows Key+X > Windows Powershell (Admin) > Copy the following from below and right click in Powershell to paste > Enter > Restart your computer

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

4. Run Built-in & Guided Walk through Windows Update troubleshooter
Built-in : Windows Key+X > Click Settings > Click Update & security > Click Troubleshoot > Click Windows Update > Click Run the Troubleshooter

Guided Walk though - support.microsoft.com/en-us/help/10164/fix-windows-update-errors

5. For the purpose of Testing only - Create a New User Account and login with this new User Account
support.microsoft.com/en-us/help/4026923/windows-10-create-a-local-user-or-administrator-account

댓글