From e0458e519345f68ab9b1efa69f9a6205e35d4f43 Mon Sep 17 00:00:00 2001 From: Xyueta Date: Wed, 9 Aug 2023 12:48:51 +0200 Subject: [PATCH] feat: disable recommendations for tips, shortcuts, new apps, and more on start menu --- src/playbook/Executables/WIN11.cmd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/playbook/Executables/WIN11.cmd b/src/playbook/Executables/WIN11.cmd index 559536c555..f172f05459 100644 --- a/src/playbook/Executables/WIN11.cmd +++ b/src/playbook/Executables/WIN11.cmd @@ -13,3 +13,5 @@ for /f "tokens=6 delims=[.] " %%a in ('ver') do ( :: https://randomascii.wordpress.com/2020/10/04/windows-timer-resolution-the-great-rule-change reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\kernel" /v "GlobalTimerResolutionRequests" /t REG_DWORD /d "1" /f +:: Disable recommendations for tips, shortcuts, new apps, and more on start menu +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_IrisRecommendations" /t REG_DWORD /d "0" /f