How to fix / refresh start menu in Windows 10? How to add / remove / edit items in bulk?

19

3

I have my Start Menu completely damaged after upgrading to Windows 10. Some items are absent another ones are wrong or unneeded.

You can search my other questions for proofs if you don't believe.

The question is how to add my needed items to start menu in bulk? I am not interested in by-one solutions, like reinstalling programs (imagine you yourself reinstall dozens of programs just to put them into menu).

Suppose I have StartMenu folder somewhere in the disk, full of subfolders and LNK files. Now, how to remove ALL current items from my Main Menu and put all links and submenus from StartMenu folder into my Main Menu?

Dims

Posted 2015-08-14T12:17:47.863

Reputation: 8 464

What do you mean by parasitic version, what happens when you open it? – MC10 – 2015-08-14T12:41:22.563

Some reduced read-only version of OneNote opens, which does not show my notebooks – Dims – 2015-08-14T12:43:14.820

Answers

12

(Edit: This answer mostly relates to Windows 10 prior to Version 1511.)

The Windows 10 Start menu has several known bugs. You might have run against the particularly noxious bug limiting the total number of entries to 512. That's not 512 applications, by the way - that's 512 items in total, including apps, folders, files and shortcuts. (EDIT: starting with Version 1511 Microsoft has significantly increased this limit.)

The best solution, in my opinion, is not to fight against these bugs, since you really have no other option than wait for a fix from Microsoft. Instead, until Microsoft gets its act together, replace its Start menu with a third-party one. The top contenders are :

Otherwise, here is a list of workarounds for the Microsoft one :

  1. Rebuild the search index by going to Control Panel / Indexing Options / Advanced and using the Rebuild button.
  2. Reset the Start menu layout by opening an elevated command prompt, exit Explorer, delete the Start menu database at %LocalAppData%\Microsoft\Windows\appsFolder.menu.itemdata-ms and run Explorer again. (EDIT: this file no longer exists in newer versions of Windows 10.)
  3. Ensure your Windows 10 Start Menu does not exceed 512 items by reducing the number of indexed locations
  4. Reinstall all applications, by entering in Powershell as Administrator
    Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  5. Try a new user account, since your profile might be damaged

Even if one of the workarounds works for you, the bug can hit again at any time. The only lasting solution is to use a more stable Start menu replacement.

harrymc

Posted 2015-08-14T12:17:47.863

Reputation: 306 093

If I use Start10, will I be able to restore my apps in bulk? – Dims – 2015-10-17T11:30:55.843

Nevermind! Classic Shell seemed perfect! :) – Dims – 2015-10-17T11:37:54.120

@harrymc - It does not really change your answer but starting with Version 1511 Microsoft increased the limited on the number of items significantly. – Ramhound – 2015-12-04T19:01:07.320

@Ramhound: Thanks - I have added your remark in the text. – harrymc – 2015-12-04T20:42:19.903

1

To "refresh" the Start Menu, follow these steps:

  1. Open the "Run command" window by pressing WIN+R.
    (i.e. hold down the Windows key and then press R.)
  2. Type "cmd" at the prompt, and press Enter.
  3. Wait for the command prompt to open.
    (It will be a flashing cursor block.)
  4. At the command prompt, type this:
    taskkill /IM explorer.exe /F
    You should notice these all vanish: Start Menu, Taskbar, any open File Explorer windows.
  5. Type this at the command prompt:
    explorer.exe
    Now those components should all load back in.
  6. Close the command prompt and try the Start Menu. Hopefully it should have refreshed.

intrepidis

Posted 2015-08-14T12:17:47.863

Reputation: 111

Make sure to get the command prompt and not just paste the taskkill into Run, since Win+R won't work afterwards. I regained my command prompt by right-clicking a tab in Notepad++. – Noumenon – 2018-12-02T19:51:52.997

@Noumenon Also, the infamous Ctrl+Alt+Del allows you to launch Task Manager, in which you'l find a "Run Mew Task" menu option... – manuell – 2019-10-29T12:54:36.037

This just closes explorer, same result as restarting the PC which is way easier for average people. Ctrl+Shift+Right-click open Taskbar area has Exit Explorer – gregg – 2019-11-18T20:59:59.957

0

You can find 'start menu' under: C:\ProgramData\Microsoft\Windows\Start Menu\Programs

You can also set default 'Apps' at: Settings -> System -> 'Default apps'

user483200

Posted 2015-08-14T12:17:47.863

Reputation: 1

2Yes, I can finde something in C:\ProgramData\Microsoft\Windows\Start Menu\Programs, but the content of this folder is not correspond with the content of visually presented items. For example, this folder contains my actual OneNote link, which is not presented when I am entering my search – Dims – 2015-08-14T15:32:42.617

0

You could uninstall the application as a whole. You wont be able to do so in the app manager, it's grayed out.

You need to open a powershell as admin and type this in

Remove-AppxPackage Microsoft.Office.OneNote_17.6027.10021.0_x64__8wekyb3d8bbwe

if this one doesn't work try this

Remove-AppxPackage Microsoft.Office.OneNote_17.4027.10061.0_x64__8wekyb3d8bbwe

OrangeBender

Posted 2015-08-14T12:17:47.863

Reputation: 36