Some start menu shortcuts are missing on Windows 10
Not sure when this started happening but some time after upgrading to Windows 10 I noticed some of my search results were not showing up with what I wanted. For instance, when I searched for Word 2013 or Skype, I did not get any results. I decided to investigate and tried rebuilding the indexing file and moving it to a new location but it made no difference.
So I checked my start menu and manually tried looking for the shortcuts only to discover that they strangely weren't there. Also notice how some of my tiles have suddenly disappeared.
Strangely enough when I browse the actual location of the start menu folder, the shortcut for Word and Powerpoint are there.
I've checked that none of the folders/shortcuts are hidden or read-only and that the files/folders have sufficient permissions via the Security tab.
Any ideas how to solve this?
windows windows-10 start-menu
add a comment |
Not sure when this started happening but some time after upgrading to Windows 10 I noticed some of my search results were not showing up with what I wanted. For instance, when I searched for Word 2013 or Skype, I did not get any results. I decided to investigate and tried rebuilding the indexing file and moving it to a new location but it made no difference.
So I checked my start menu and manually tried looking for the shortcuts only to discover that they strangely weren't there. Also notice how some of my tiles have suddenly disappeared.
Strangely enough when I browse the actual location of the start menu folder, the shortcut for Word and Powerpoint are there.
I've checked that none of the folders/shortcuts are hidden or read-only and that the files/folders have sufficient permissions via the Security tab.
Any ideas how to solve this?
windows windows-10 start-menu
add a comment |
Not sure when this started happening but some time after upgrading to Windows 10 I noticed some of my search results were not showing up with what I wanted. For instance, when I searched for Word 2013 or Skype, I did not get any results. I decided to investigate and tried rebuilding the indexing file and moving it to a new location but it made no difference.
So I checked my start menu and manually tried looking for the shortcuts only to discover that they strangely weren't there. Also notice how some of my tiles have suddenly disappeared.
Strangely enough when I browse the actual location of the start menu folder, the shortcut for Word and Powerpoint are there.
I've checked that none of the folders/shortcuts are hidden or read-only and that the files/folders have sufficient permissions via the Security tab.
Any ideas how to solve this?
windows windows-10 start-menu
Not sure when this started happening but some time after upgrading to Windows 10 I noticed some of my search results were not showing up with what I wanted. For instance, when I searched for Word 2013 or Skype, I did not get any results. I decided to investigate and tried rebuilding the indexing file and moving it to a new location but it made no difference.
So I checked my start menu and manually tried looking for the shortcuts only to discover that they strangely weren't there. Also notice how some of my tiles have suddenly disappeared.
Strangely enough when I browse the actual location of the start menu folder, the shortcut for Word and Powerpoint are there.
I've checked that none of the folders/shortcuts are hidden or read-only and that the files/folders have sufficient permissions via the Security tab.
Any ideas how to solve this?
windows windows-10 start-menu
windows windows-10 start-menu
edited Aug 11 '15 at 11:01
DavidPostill♦
105k25227262
105k25227262
asked Aug 11 '15 at 6:15
TheMasterTheMaster
73114
73114
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
At the current moment the start menu is limited to 500 entries in the database. This also affects search and Cortana as they both rely on that DB.
There is currently no known fix other than going to your start menu folder and deleting links and folders to apps not used.
Edit: On 2015-09-19 they released a technical preview that lifted that limit to 2048, which is nice. It should be pushing out to Insiders and will trickle down to standard users soon enough.
Source: http://arstechnica.com/gadgets/2015/07/review-windows-10-is-the-best-version-yet-once-the-bugs-get-fixed/
5
Thanks for that. What a ridiculous oversight by Microsoft honestly.
– TheMaster
Aug 11 '15 at 10:09
wow, these people at microsoft I can't understand them.
– Dreaded semicolon
Aug 14 '15 at 6:19
What's the source of that number?
– Der Hochstapler
Sep 3 '15 at 10:44
Added to the answer, Oliver.
– Quinton M.
Sep 3 '15 at 20:16
add a comment |
I had a similar problem after upgrading.
I was able to fix it by:
- Going to Start Menu folder->Properties (
%appdata%MicrosoftWindowsStart Menu
) - Selecting the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
- Unselect the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
I'm not sure what caused Windows to see some as hidden and others not, but this reset the flags and everything is visible on the start menu, now.
1
It seems that Windows 10 hides all but the first 5-10 shortcuts in each sub-folder of the start menu, and this fixes that, although I suspect not for shortcuts added later. /edit: Spoke too soon. Windows re-hid them shortly after.
– Jacob
Feb 14 '17 at 12:59
add a comment |
I can confirm that this is a major flaw. Some people in Windows Forums are reporting that it happens to them with even less shortcuts/entries. We just have to hang tight for right now unless you want to explore third party options.
1
I can confirm that this is still happening for me. Apparently the powershell commandGet-StartApps
shows commands that are part of the start menu. Mine indicates that I've only got 192 items. Oddly, the shortcut I can't get to appear (LinqPad), DOES appear when usingGet-StartApps
.
– Ben Randall MSFT
Aug 3 '16 at 16:21
add a comment |
I've had issues with the new Win 10 start menu on several workstations after upgrading from Win 7. Here is a batch file I use to rebuild the start menu:
ResetWin10StartMenu.bat
@echo off
echo.
echo This will delete the TileDataLayer database to reset the Windows 10 Start Menu.
echo It may take a couple hours and a few reboots before the menu is automatically rebuilt.
echo All items pinned to start will have to be repinned once the menu returns to normal.
echo.
echo *** The Start Menu database will be backed up before being deleted ***
echo.
CHOICE /C DRC /M "Press D to Delete the database, R to Restore, or C to Cancel."
if errorlevel 3 goto end
if errorlevel 2 goto restoredata
if errorlevel 1 goto deletedata
:deletedata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
md %userprofile%desktopStartMenuBackup
copy *.* %userprofile%desktopStartMenuBackup
del /q *.*
sc start tiledatamodelsvc
explorer.exe
goto end
:restoredata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
copy %userprofile%desktopStartMenuBackup*.*
sc start tiledatamodelsvc
explorer.exe
goto end
:end
exit
Interesting. How long would this take to run on a "typical" machine?
– Laurie Stearn
Dec 28 '18 at 14:36
The batch file itself run in seconds but the actual time it takes for all items to reappear on the start menu is another story, Most of the machines I ran this on had their icons come back after just one reboot.
– Dan Stevenson
Dec 31 '18 at 13:15
add a comment |
I found out a peculiar behaviour which causes an instance of this problem.
My findings are for build 1703, and I cannot, at the moment, verify them on more recent builds.
I had a shortcut inside a menu folder which would not show up, no matter what.
In the end, I discovered that the Start Menu hides duplicate shortcuts that point to the same file. Suppose you have a shortcut named Shortcut-A
at the root level of the menu file structure (C:ProgramDataMicrosoftWindowsStart MenuPrograms
) which points to c:someprogram.exe
.
Now suppose you have a copy of Shortcut-A
in a menu folder e.g. C:ProgramDataMicrosoftWindowsStart MenuProgramsSomeFolder
.
In the All applications list only the copy at root level will be visible. You can find the folder SomeFolder
under the letter "S" in the list, but the shortcut will not be visible under it.
Furthermore, this happens even if the two shortcuts have different names, but point to the same executable. In other words, if, in SomeFolder
, you have Shortcut-B
pointing to c:someprogram.exe
it will not show up as well.
In my tests this can be reproduced systematically and the Start Menu immediately updates itself after creating/deleting copies of the shortcut, with no need to touch the menu database files.
add a comment |
Cleanup Cortana cache:
- Kill
explorer.exe
anddllhost.exe
- Delete
%USERPROFILE%AppDataLocalPackagesMicrosoft.Windows.Cortana_cw5n1h2txyewy*
How is the Cortana cache connected to this problem? How does removing Cortana fix this problem? Because all that command will do is nuke the contents of the Cortana package directory which is a horrible idea and I consider it to be harmful advice. If you care about the stability of your system, and actually want Cortana to be installed, I do not suggest you follow the instructions in this answer.
– Ramhound
Aug 17 '17 at 23:26
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f955139%2fsome-start-menu-shortcuts-are-missing-on-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
At the current moment the start menu is limited to 500 entries in the database. This also affects search and Cortana as they both rely on that DB.
There is currently no known fix other than going to your start menu folder and deleting links and folders to apps not used.
Edit: On 2015-09-19 they released a technical preview that lifted that limit to 2048, which is nice. It should be pushing out to Insiders and will trickle down to standard users soon enough.
Source: http://arstechnica.com/gadgets/2015/07/review-windows-10-is-the-best-version-yet-once-the-bugs-get-fixed/
5
Thanks for that. What a ridiculous oversight by Microsoft honestly.
– TheMaster
Aug 11 '15 at 10:09
wow, these people at microsoft I can't understand them.
– Dreaded semicolon
Aug 14 '15 at 6:19
What's the source of that number?
– Der Hochstapler
Sep 3 '15 at 10:44
Added to the answer, Oliver.
– Quinton M.
Sep 3 '15 at 20:16
add a comment |
At the current moment the start menu is limited to 500 entries in the database. This also affects search and Cortana as they both rely on that DB.
There is currently no known fix other than going to your start menu folder and deleting links and folders to apps not used.
Edit: On 2015-09-19 they released a technical preview that lifted that limit to 2048, which is nice. It should be pushing out to Insiders and will trickle down to standard users soon enough.
Source: http://arstechnica.com/gadgets/2015/07/review-windows-10-is-the-best-version-yet-once-the-bugs-get-fixed/
5
Thanks for that. What a ridiculous oversight by Microsoft honestly.
– TheMaster
Aug 11 '15 at 10:09
wow, these people at microsoft I can't understand them.
– Dreaded semicolon
Aug 14 '15 at 6:19
What's the source of that number?
– Der Hochstapler
Sep 3 '15 at 10:44
Added to the answer, Oliver.
– Quinton M.
Sep 3 '15 at 20:16
add a comment |
At the current moment the start menu is limited to 500 entries in the database. This also affects search and Cortana as they both rely on that DB.
There is currently no known fix other than going to your start menu folder and deleting links and folders to apps not used.
Edit: On 2015-09-19 they released a technical preview that lifted that limit to 2048, which is nice. It should be pushing out to Insiders and will trickle down to standard users soon enough.
Source: http://arstechnica.com/gadgets/2015/07/review-windows-10-is-the-best-version-yet-once-the-bugs-get-fixed/
At the current moment the start menu is limited to 500 entries in the database. This also affects search and Cortana as they both rely on that DB.
There is currently no known fix other than going to your start menu folder and deleting links and folders to apps not used.
Edit: On 2015-09-19 they released a technical preview that lifted that limit to 2048, which is nice. It should be pushing out to Insiders and will trickle down to standard users soon enough.
Source: http://arstechnica.com/gadgets/2015/07/review-windows-10-is-the-best-version-yet-once-the-bugs-get-fixed/
edited Sep 19 '15 at 16:34
answered Aug 11 '15 at 6:30
Quinton M.Quinton M.
3601211
3601211
5
Thanks for that. What a ridiculous oversight by Microsoft honestly.
– TheMaster
Aug 11 '15 at 10:09
wow, these people at microsoft I can't understand them.
– Dreaded semicolon
Aug 14 '15 at 6:19
What's the source of that number?
– Der Hochstapler
Sep 3 '15 at 10:44
Added to the answer, Oliver.
– Quinton M.
Sep 3 '15 at 20:16
add a comment |
5
Thanks for that. What a ridiculous oversight by Microsoft honestly.
– TheMaster
Aug 11 '15 at 10:09
wow, these people at microsoft I can't understand them.
– Dreaded semicolon
Aug 14 '15 at 6:19
What's the source of that number?
– Der Hochstapler
Sep 3 '15 at 10:44
Added to the answer, Oliver.
– Quinton M.
Sep 3 '15 at 20:16
5
5
Thanks for that. What a ridiculous oversight by Microsoft honestly.
– TheMaster
Aug 11 '15 at 10:09
Thanks for that. What a ridiculous oversight by Microsoft honestly.
– TheMaster
Aug 11 '15 at 10:09
wow, these people at microsoft I can't understand them.
– Dreaded semicolon
Aug 14 '15 at 6:19
wow, these people at microsoft I can't understand them.
– Dreaded semicolon
Aug 14 '15 at 6:19
What's the source of that number?
– Der Hochstapler
Sep 3 '15 at 10:44
What's the source of that number?
– Der Hochstapler
Sep 3 '15 at 10:44
Added to the answer, Oliver.
– Quinton M.
Sep 3 '15 at 20:16
Added to the answer, Oliver.
– Quinton M.
Sep 3 '15 at 20:16
add a comment |
I had a similar problem after upgrading.
I was able to fix it by:
- Going to Start Menu folder->Properties (
%appdata%MicrosoftWindowsStart Menu
) - Selecting the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
- Unselect the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
I'm not sure what caused Windows to see some as hidden and others not, but this reset the flags and everything is visible on the start menu, now.
1
It seems that Windows 10 hides all but the first 5-10 shortcuts in each sub-folder of the start menu, and this fixes that, although I suspect not for shortcuts added later. /edit: Spoke too soon. Windows re-hid them shortly after.
– Jacob
Feb 14 '17 at 12:59
add a comment |
I had a similar problem after upgrading.
I was able to fix it by:
- Going to Start Menu folder->Properties (
%appdata%MicrosoftWindowsStart Menu
) - Selecting the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
- Unselect the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
I'm not sure what caused Windows to see some as hidden and others not, but this reset the flags and everything is visible on the start menu, now.
1
It seems that Windows 10 hides all but the first 5-10 shortcuts in each sub-folder of the start menu, and this fixes that, although I suspect not for shortcuts added later. /edit: Spoke too soon. Windows re-hid them shortly after.
– Jacob
Feb 14 '17 at 12:59
add a comment |
I had a similar problem after upgrading.
I was able to fix it by:
- Going to Start Menu folder->Properties (
%appdata%MicrosoftWindowsStart Menu
) - Selecting the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
- Unselect the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
I'm not sure what caused Windows to see some as hidden and others not, but this reset the flags and everything is visible on the start menu, now.
I had a similar problem after upgrading.
I was able to fix it by:
- Going to Start Menu folder->Properties (
%appdata%MicrosoftWindowsStart Menu
) - Selecting the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
- Unselect the "Hidden" option
- Hit "Apply"
- Select "Apply changes to this folder, subfolders and files" and hit OK
I'm not sure what caused Windows to see some as hidden and others not, but this reset the flags and everything is visible on the start menu, now.
edited Oct 24 '16 at 15:06
Jerther
1034
1034
answered Sep 3 '15 at 20:42
SnoProblemSnoProblem
23112
23112
1
It seems that Windows 10 hides all but the first 5-10 shortcuts in each sub-folder of the start menu, and this fixes that, although I suspect not for shortcuts added later. /edit: Spoke too soon. Windows re-hid them shortly after.
– Jacob
Feb 14 '17 at 12:59
add a comment |
1
It seems that Windows 10 hides all but the first 5-10 shortcuts in each sub-folder of the start menu, and this fixes that, although I suspect not for shortcuts added later. /edit: Spoke too soon. Windows re-hid them shortly after.
– Jacob
Feb 14 '17 at 12:59
1
1
It seems that Windows 10 hides all but the first 5-10 shortcuts in each sub-folder of the start menu, and this fixes that, although I suspect not for shortcuts added later. /edit: Spoke too soon. Windows re-hid them shortly after.
– Jacob
Feb 14 '17 at 12:59
It seems that Windows 10 hides all but the first 5-10 shortcuts in each sub-folder of the start menu, and this fixes that, although I suspect not for shortcuts added later. /edit: Spoke too soon. Windows re-hid them shortly after.
– Jacob
Feb 14 '17 at 12:59
add a comment |
I can confirm that this is a major flaw. Some people in Windows Forums are reporting that it happens to them with even less shortcuts/entries. We just have to hang tight for right now unless you want to explore third party options.
1
I can confirm that this is still happening for me. Apparently the powershell commandGet-StartApps
shows commands that are part of the start menu. Mine indicates that I've only got 192 items. Oddly, the shortcut I can't get to appear (LinqPad), DOES appear when usingGet-StartApps
.
– Ben Randall MSFT
Aug 3 '16 at 16:21
add a comment |
I can confirm that this is a major flaw. Some people in Windows Forums are reporting that it happens to them with even less shortcuts/entries. We just have to hang tight for right now unless you want to explore third party options.
1
I can confirm that this is still happening for me. Apparently the powershell commandGet-StartApps
shows commands that are part of the start menu. Mine indicates that I've only got 192 items. Oddly, the shortcut I can't get to appear (LinqPad), DOES appear when usingGet-StartApps
.
– Ben Randall MSFT
Aug 3 '16 at 16:21
add a comment |
I can confirm that this is a major flaw. Some people in Windows Forums are reporting that it happens to them with even less shortcuts/entries. We just have to hang tight for right now unless you want to explore third party options.
I can confirm that this is a major flaw. Some people in Windows Forums are reporting that it happens to them with even less shortcuts/entries. We just have to hang tight for right now unless you want to explore third party options.
answered Aug 13 '15 at 23:27
Richard SeeseRichard Seese
362
362
1
I can confirm that this is still happening for me. Apparently the powershell commandGet-StartApps
shows commands that are part of the start menu. Mine indicates that I've only got 192 items. Oddly, the shortcut I can't get to appear (LinqPad), DOES appear when usingGet-StartApps
.
– Ben Randall MSFT
Aug 3 '16 at 16:21
add a comment |
1
I can confirm that this is still happening for me. Apparently the powershell commandGet-StartApps
shows commands that are part of the start menu. Mine indicates that I've only got 192 items. Oddly, the shortcut I can't get to appear (LinqPad), DOES appear when usingGet-StartApps
.
– Ben Randall MSFT
Aug 3 '16 at 16:21
1
1
I can confirm that this is still happening for me. Apparently the powershell command
Get-StartApps
shows commands that are part of the start menu. Mine indicates that I've only got 192 items. Oddly, the shortcut I can't get to appear (LinqPad), DOES appear when using Get-StartApps
.– Ben Randall MSFT
Aug 3 '16 at 16:21
I can confirm that this is still happening for me. Apparently the powershell command
Get-StartApps
shows commands that are part of the start menu. Mine indicates that I've only got 192 items. Oddly, the shortcut I can't get to appear (LinqPad), DOES appear when using Get-StartApps
.– Ben Randall MSFT
Aug 3 '16 at 16:21
add a comment |
I've had issues with the new Win 10 start menu on several workstations after upgrading from Win 7. Here is a batch file I use to rebuild the start menu:
ResetWin10StartMenu.bat
@echo off
echo.
echo This will delete the TileDataLayer database to reset the Windows 10 Start Menu.
echo It may take a couple hours and a few reboots before the menu is automatically rebuilt.
echo All items pinned to start will have to be repinned once the menu returns to normal.
echo.
echo *** The Start Menu database will be backed up before being deleted ***
echo.
CHOICE /C DRC /M "Press D to Delete the database, R to Restore, or C to Cancel."
if errorlevel 3 goto end
if errorlevel 2 goto restoredata
if errorlevel 1 goto deletedata
:deletedata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
md %userprofile%desktopStartMenuBackup
copy *.* %userprofile%desktopStartMenuBackup
del /q *.*
sc start tiledatamodelsvc
explorer.exe
goto end
:restoredata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
copy %userprofile%desktopStartMenuBackup*.*
sc start tiledatamodelsvc
explorer.exe
goto end
:end
exit
Interesting. How long would this take to run on a "typical" machine?
– Laurie Stearn
Dec 28 '18 at 14:36
The batch file itself run in seconds but the actual time it takes for all items to reappear on the start menu is another story, Most of the machines I ran this on had their icons come back after just one reboot.
– Dan Stevenson
Dec 31 '18 at 13:15
add a comment |
I've had issues with the new Win 10 start menu on several workstations after upgrading from Win 7. Here is a batch file I use to rebuild the start menu:
ResetWin10StartMenu.bat
@echo off
echo.
echo This will delete the TileDataLayer database to reset the Windows 10 Start Menu.
echo It may take a couple hours and a few reboots before the menu is automatically rebuilt.
echo All items pinned to start will have to be repinned once the menu returns to normal.
echo.
echo *** The Start Menu database will be backed up before being deleted ***
echo.
CHOICE /C DRC /M "Press D to Delete the database, R to Restore, or C to Cancel."
if errorlevel 3 goto end
if errorlevel 2 goto restoredata
if errorlevel 1 goto deletedata
:deletedata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
md %userprofile%desktopStartMenuBackup
copy *.* %userprofile%desktopStartMenuBackup
del /q *.*
sc start tiledatamodelsvc
explorer.exe
goto end
:restoredata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
copy %userprofile%desktopStartMenuBackup*.*
sc start tiledatamodelsvc
explorer.exe
goto end
:end
exit
Interesting. How long would this take to run on a "typical" machine?
– Laurie Stearn
Dec 28 '18 at 14:36
The batch file itself run in seconds but the actual time it takes for all items to reappear on the start menu is another story, Most of the machines I ran this on had their icons come back after just one reboot.
– Dan Stevenson
Dec 31 '18 at 13:15
add a comment |
I've had issues with the new Win 10 start menu on several workstations after upgrading from Win 7. Here is a batch file I use to rebuild the start menu:
ResetWin10StartMenu.bat
@echo off
echo.
echo This will delete the TileDataLayer database to reset the Windows 10 Start Menu.
echo It may take a couple hours and a few reboots before the menu is automatically rebuilt.
echo All items pinned to start will have to be repinned once the menu returns to normal.
echo.
echo *** The Start Menu database will be backed up before being deleted ***
echo.
CHOICE /C DRC /M "Press D to Delete the database, R to Restore, or C to Cancel."
if errorlevel 3 goto end
if errorlevel 2 goto restoredata
if errorlevel 1 goto deletedata
:deletedata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
md %userprofile%desktopStartMenuBackup
copy *.* %userprofile%desktopStartMenuBackup
del /q *.*
sc start tiledatamodelsvc
explorer.exe
goto end
:restoredata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
copy %userprofile%desktopStartMenuBackup*.*
sc start tiledatamodelsvc
explorer.exe
goto end
:end
exit
I've had issues with the new Win 10 start menu on several workstations after upgrading from Win 7. Here is a batch file I use to rebuild the start menu:
ResetWin10StartMenu.bat
@echo off
echo.
echo This will delete the TileDataLayer database to reset the Windows 10 Start Menu.
echo It may take a couple hours and a few reboots before the menu is automatically rebuilt.
echo All items pinned to start will have to be repinned once the menu returns to normal.
echo.
echo *** The Start Menu database will be backed up before being deleted ***
echo.
CHOICE /C DRC /M "Press D to Delete the database, R to Restore, or C to Cancel."
if errorlevel 3 goto end
if errorlevel 2 goto restoredata
if errorlevel 1 goto deletedata
:deletedata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
md %userprofile%desktopStartMenuBackup
copy *.* %userprofile%desktopStartMenuBackup
del /q *.*
sc start tiledatamodelsvc
explorer.exe
goto end
:restoredata
taskkill /im explorer.exe /F
c:
cd c:Users%username%AppDataLocalTileDataLayerDatabase
sc stop tiledatamodelsvc
copy %userprofile%desktopStartMenuBackup*.*
sc start tiledatamodelsvc
explorer.exe
goto end
:end
exit
edited Oct 13 '16 at 15:30
answered Oct 13 '16 at 15:23
Dan StevensonDan Stevenson
213
213
Interesting. How long would this take to run on a "typical" machine?
– Laurie Stearn
Dec 28 '18 at 14:36
The batch file itself run in seconds but the actual time it takes for all items to reappear on the start menu is another story, Most of the machines I ran this on had their icons come back after just one reboot.
– Dan Stevenson
Dec 31 '18 at 13:15
add a comment |
Interesting. How long would this take to run on a "typical" machine?
– Laurie Stearn
Dec 28 '18 at 14:36
The batch file itself run in seconds but the actual time it takes for all items to reappear on the start menu is another story, Most of the machines I ran this on had their icons come back after just one reboot.
– Dan Stevenson
Dec 31 '18 at 13:15
Interesting. How long would this take to run on a "typical" machine?
– Laurie Stearn
Dec 28 '18 at 14:36
Interesting. How long would this take to run on a "typical" machine?
– Laurie Stearn
Dec 28 '18 at 14:36
The batch file itself run in seconds but the actual time it takes for all items to reappear on the start menu is another story, Most of the machines I ran this on had their icons come back after just one reboot.
– Dan Stevenson
Dec 31 '18 at 13:15
The batch file itself run in seconds but the actual time it takes for all items to reappear on the start menu is another story, Most of the machines I ran this on had their icons come back after just one reboot.
– Dan Stevenson
Dec 31 '18 at 13:15
add a comment |
I found out a peculiar behaviour which causes an instance of this problem.
My findings are for build 1703, and I cannot, at the moment, verify them on more recent builds.
I had a shortcut inside a menu folder which would not show up, no matter what.
In the end, I discovered that the Start Menu hides duplicate shortcuts that point to the same file. Suppose you have a shortcut named Shortcut-A
at the root level of the menu file structure (C:ProgramDataMicrosoftWindowsStart MenuPrograms
) which points to c:someprogram.exe
.
Now suppose you have a copy of Shortcut-A
in a menu folder e.g. C:ProgramDataMicrosoftWindowsStart MenuProgramsSomeFolder
.
In the All applications list only the copy at root level will be visible. You can find the folder SomeFolder
under the letter "S" in the list, but the shortcut will not be visible under it.
Furthermore, this happens even if the two shortcuts have different names, but point to the same executable. In other words, if, in SomeFolder
, you have Shortcut-B
pointing to c:someprogram.exe
it will not show up as well.
In my tests this can be reproduced systematically and the Start Menu immediately updates itself after creating/deleting copies of the shortcut, with no need to touch the menu database files.
add a comment |
I found out a peculiar behaviour which causes an instance of this problem.
My findings are for build 1703, and I cannot, at the moment, verify them on more recent builds.
I had a shortcut inside a menu folder which would not show up, no matter what.
In the end, I discovered that the Start Menu hides duplicate shortcuts that point to the same file. Suppose you have a shortcut named Shortcut-A
at the root level of the menu file structure (C:ProgramDataMicrosoftWindowsStart MenuPrograms
) which points to c:someprogram.exe
.
Now suppose you have a copy of Shortcut-A
in a menu folder e.g. C:ProgramDataMicrosoftWindowsStart MenuProgramsSomeFolder
.
In the All applications list only the copy at root level will be visible. You can find the folder SomeFolder
under the letter "S" in the list, but the shortcut will not be visible under it.
Furthermore, this happens even if the two shortcuts have different names, but point to the same executable. In other words, if, in SomeFolder
, you have Shortcut-B
pointing to c:someprogram.exe
it will not show up as well.
In my tests this can be reproduced systematically and the Start Menu immediately updates itself after creating/deleting copies of the shortcut, with no need to touch the menu database files.
add a comment |
I found out a peculiar behaviour which causes an instance of this problem.
My findings are for build 1703, and I cannot, at the moment, verify them on more recent builds.
I had a shortcut inside a menu folder which would not show up, no matter what.
In the end, I discovered that the Start Menu hides duplicate shortcuts that point to the same file. Suppose you have a shortcut named Shortcut-A
at the root level of the menu file structure (C:ProgramDataMicrosoftWindowsStart MenuPrograms
) which points to c:someprogram.exe
.
Now suppose you have a copy of Shortcut-A
in a menu folder e.g. C:ProgramDataMicrosoftWindowsStart MenuProgramsSomeFolder
.
In the All applications list only the copy at root level will be visible. You can find the folder SomeFolder
under the letter "S" in the list, but the shortcut will not be visible under it.
Furthermore, this happens even if the two shortcuts have different names, but point to the same executable. In other words, if, in SomeFolder
, you have Shortcut-B
pointing to c:someprogram.exe
it will not show up as well.
In my tests this can be reproduced systematically and the Start Menu immediately updates itself after creating/deleting copies of the shortcut, with no need to touch the menu database files.
I found out a peculiar behaviour which causes an instance of this problem.
My findings are for build 1703, and I cannot, at the moment, verify them on more recent builds.
I had a shortcut inside a menu folder which would not show up, no matter what.
In the end, I discovered that the Start Menu hides duplicate shortcuts that point to the same file. Suppose you have a shortcut named Shortcut-A
at the root level of the menu file structure (C:ProgramDataMicrosoftWindowsStart MenuPrograms
) which points to c:someprogram.exe
.
Now suppose you have a copy of Shortcut-A
in a menu folder e.g. C:ProgramDataMicrosoftWindowsStart MenuProgramsSomeFolder
.
In the All applications list only the copy at root level will be visible. You can find the folder SomeFolder
under the letter "S" in the list, but the shortcut will not be visible under it.
Furthermore, this happens even if the two shortcuts have different names, but point to the same executable. In other words, if, in SomeFolder
, you have Shortcut-B
pointing to c:someprogram.exe
it will not show up as well.
In my tests this can be reproduced systematically and the Start Menu immediately updates itself after creating/deleting copies of the shortcut, with no need to touch the menu database files.
edited Jan 17 at 11:27
answered Jan 17 at 9:12
Enrico MartignettiEnrico Martignetti
12
12
add a comment |
add a comment |
Cleanup Cortana cache:
- Kill
explorer.exe
anddllhost.exe
- Delete
%USERPROFILE%AppDataLocalPackagesMicrosoft.Windows.Cortana_cw5n1h2txyewy*
How is the Cortana cache connected to this problem? How does removing Cortana fix this problem? Because all that command will do is nuke the contents of the Cortana package directory which is a horrible idea and I consider it to be harmful advice. If you care about the stability of your system, and actually want Cortana to be installed, I do not suggest you follow the instructions in this answer.
– Ramhound
Aug 17 '17 at 23:26
add a comment |
Cleanup Cortana cache:
- Kill
explorer.exe
anddllhost.exe
- Delete
%USERPROFILE%AppDataLocalPackagesMicrosoft.Windows.Cortana_cw5n1h2txyewy*
How is the Cortana cache connected to this problem? How does removing Cortana fix this problem? Because all that command will do is nuke the contents of the Cortana package directory which is a horrible idea and I consider it to be harmful advice. If you care about the stability of your system, and actually want Cortana to be installed, I do not suggest you follow the instructions in this answer.
– Ramhound
Aug 17 '17 at 23:26
add a comment |
Cleanup Cortana cache:
- Kill
explorer.exe
anddllhost.exe
- Delete
%USERPROFILE%AppDataLocalPackagesMicrosoft.Windows.Cortana_cw5n1h2txyewy*
Cleanup Cortana cache:
- Kill
explorer.exe
anddllhost.exe
- Delete
%USERPROFILE%AppDataLocalPackagesMicrosoft.Windows.Cortana_cw5n1h2txyewy*
answered Aug 17 '17 at 22:55
Chris XueChris Xue
991
991
How is the Cortana cache connected to this problem? How does removing Cortana fix this problem? Because all that command will do is nuke the contents of the Cortana package directory which is a horrible idea and I consider it to be harmful advice. If you care about the stability of your system, and actually want Cortana to be installed, I do not suggest you follow the instructions in this answer.
– Ramhound
Aug 17 '17 at 23:26
add a comment |
How is the Cortana cache connected to this problem? How does removing Cortana fix this problem? Because all that command will do is nuke the contents of the Cortana package directory which is a horrible idea and I consider it to be harmful advice. If you care about the stability of your system, and actually want Cortana to be installed, I do not suggest you follow the instructions in this answer.
– Ramhound
Aug 17 '17 at 23:26
How is the Cortana cache connected to this problem? How does removing Cortana fix this problem? Because all that command will do is nuke the contents of the Cortana package directory which is a horrible idea and I consider it to be harmful advice. If you care about the stability of your system, and actually want Cortana to be installed, I do not suggest you follow the instructions in this answer.
– Ramhound
Aug 17 '17 at 23:26
How is the Cortana cache connected to this problem? How does removing Cortana fix this problem? Because all that command will do is nuke the contents of the Cortana package directory which is a horrible idea and I consider it to be harmful advice. If you care about the stability of your system, and actually want Cortana to be installed, I do not suggest you follow the instructions in this answer.
– Ramhound
Aug 17 '17 at 23:26
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f955139%2fsome-start-menu-shortcuts-are-missing-on-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown