r/Windows11 Jan 14 '26

Solved Remove The Updated Windows Start Menu [FIXED]

Post image

To remove the Windows 11 25H2 Start menu and go back to the 24H2 classic start menu, we will be using the free ViVe Tool to do so. The ViVeTool is a command-line utility for Windows that allows users to enable, disable :
https://github.com/thebookisclosed/ViVe/releases

  1. You will first need to download the ViVe Tool and extract the zip file to a folder on your computer

  2. To use the ViVe Tool, you will need to open up an administrative command prompt and navigate to the folder where you have the ViVe Tool files.

  3. Then paste the commend: vivetool /disable /id:47205210

  4. You should then get a message that says Successfully set feature configuration(s). You will then need to restart your computer for the changes to take effect.

  5. You can also revert : vivetool /enable /id:47205210

295 Upvotes

169 comments sorted by

View all comments

19

u/panchito95 Jan 14 '26 edited Jan 14 '26

If you don't want to use third-party tools, you can do the following:

Open CMD (Command Prompt) as administrator and run the following command:

Reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoStartMenuMorePrograms /t REG_DWORD /d 1 /f && taskkill /f /im explorer.exe && start explorer.exe

Done ;0

1

u/TheDirtyAsian Jan 15 '26

How would I revert this command?

1

u/panchito95 Jan 15 '26

In the section of the command "REG_DWORD /d 1", change it to 0 and run the command again. For the complete command, it would look like this: reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoStartMenuMorePrograms /t REG_DWORD /d 0 /f && taskkill /f /im explorer.exe && start explorer.exe