Group Policy settings not taking effect in W11 after reboot or gpupdate /force

Gordon Williams 0 Reputation points
2025-09-19T00:57:25.1266667+00:00

Changing Group Policy to remove "Recommendations" section from the Start menu has no effect. This is an ongoing issue for many that surely has a resolution. 2025-09-19_08-27-10

Windows for business | Windows Client for IT Pros | Directory services | Deploy group policy objects
{count} votes

2 answers

Sort by: Most helpful
  1. Joseph Tran 3,200 Reputation points Independent Advisor
    2025-09-19T10:39:34.08+00:00

    Based on my knowledge, to reliably hide Recommendations, I think you can try the following approaches:

    1. Group Policy (Preferred):

    • Open gpedit.mscUser Configuration → Administrative Templates → Start Menu and Taskbar → Remove Recommendations → set to Enabled.
    • Run gpupdate /force in an elevated Command Prompt and sign out/sign back in.

    2. Registry (Reliable if Group Policy alone doesn’t work):

    • Navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer.
    • Create a DWORD (32-bit) Value named NoRecommendations and set it to 1.
    • Sign out/sign in or restart.

    3. Quick Script Option:

    @echo off
    REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoRecommendations /t REG_DWORD /d 1 /f
    echo Recommendations section should now be hidden. Please sign out and sign back in.
    pause
    
    • Save as .bat → Run as Administrator → sign out and back in.

    => Note: Some Windows 11 builds may briefly show Recommendations even after applying these settings; a full restart usually ensures the section is removed.

    => These methods cover both the standard Group Policy approach and a more reliable Registry/script approach in case the policy doesn’t take effect immediately.

    0 comments No comments

  2. Victor Morales 5 Reputation points
    2025-10-07T15:55:45.41+00:00

    I can confirm this is also an issue on Server 2025 as of build 24H2 (OS Build 26100.6584). I tried both the GPO and registry tweaks and the recommended section is still appearing even after a reboot

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.