Start Menu is always opening, minor nuisance

Sephir8th

New Member
Messages
19
Reaction score
0
I noticed the start menu is always open after the initial login. Is there a way to stop that?
 
My feeling is no. That's a byproduct of first-time logon.

Whenever I play around with Desktop settings that require a logout to take effect, and instead do:
taskkill /f /im explorer.exe && start explorer

Every few instances, or every time if you've modified specific reg keys, StartMenuExperienceHost will magically open.

What I believe is happening: Windows has to start Explorer first, otherwise you have no desktop. But it must add other first-time settings which require waiting for something else. So it restarts the desktop, and Start Menu appears.

Reddit suggestions:
 
Thanks for the quick reply, got around this by writing a small python code to add a restart into the RunOnce registry after the initial login. It reboots twice but got the job done :)
 
Since you keep coding workarounds... give yourself 8 hours before asking the next question ;)
Hehe will do! Here's one where I may not be able to get around, is there a way to bypass the 15 character naming limit on the prompt option?
 
That's a restriction for NETBIOS compatibility. If you don't care about it, 63 characters is the limit.
But network shares will truncate the host path to the first 15 characters.

I'm sure it's possible to add an override to NTLCompName.vbs, where you have to acknowledge your reckless abandon.
 
Back
Top