--- title: "Disable Microsoft Store search results" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=125} "WPFTweaksDisableStoreSearch": { "Content": "Disable Microsoft Store search results", "Description": "Will not display recommended Microsoft Store apps when searching for apps in the Start menu.", "category": "Essential Tweaks", "panel": "1", "InvokeScript": [ "icacls \"$Env:LocalAppData\\Packages\\Microsoft.WindowsStore_8wekyb3d8bbwe\\LocalState\\store.db\" /deny Everyone:F" ], "UndoScript": [ "icacls \"$Env:LocalAppData\\Packages\\Microsoft.WindowsStore_8wekyb3d8bbwe\\LocalState\\store.db\" /grant Everyone:F" ], ```