How to Fix ms-resource Problem With the Start Menu in Windows 10

After installing the Windows 10 Fall Creators Update, you may notice in the Start menu that one more app entries show up with the "ms-source:" along with the name of the app.

How to Fix ms-resource Problem With the Start Menu in Windows 10 Eypuu2C

There is a number of reasons for this to happen, but it's a sign that you may need to reinstall the built-in Windows Store apps on your device.

You can try to resolve this issue by using PowerShell.

1. Open Start Menu.
2. Type PowerShell, right-click the result, and select Run as administrator.
3. Type the following commands to re-register the missing built-in Windows 10 apps and press Enter key on each line:

Code:

reg delete "HKCU\Software\Microsoft\Windows NT\CurrentVersion\TileDataModel\Migration\TileStore" /va /f

get-appxpackage -packageType bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmetadata\appxbundlemanifest.xml")}

$bundlefamilies = (get-appxpackage -packagetype Bundle).packagefamilyname

get-appxpackage -packagetype main |? {-not ($bundlefamilies -contains $_.packagefamilyname)} |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmanifest.xml")}


After the process completes, restart your computer, and you should no longer see entries like "ms-resourceappDisplayName" in the Start menu.