chore: Update generated dev docs (#4191)

This commit is contained in:
Chris Titus
2026-03-11 16:26:43 -05:00
committed by GitHub
parent c270d25460
commit adaab0ab36
54 changed files with 71 additions and 53 deletions

View File

@@ -0,0 +1,18 @@
---
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"
],
```