Unable to right-click my Windows icon on the taskbar

3

For some reason I'm no longer able to right-click my Windows icon. Normally I would use it as a shortcut to quickly Shutdown or Restart my computer, but now it requires two extra clicks.

  • All other taskbar icons (programs, etc.) function normally.
  • I've already tried restarting my File Explorer in the Task Manager

In the gif below you can also see that the cursor moves up/right every time I right-click, which is very strange.

Sir Exotic

Posted 2019-06-25T21:54:00.907

Reputation: 133

1@mael' sounds like a perfect answer to me. Why not write it out? I'd vote it up if done properly (eg: not an answer with a link to that article, but actually copy/pasting it to preserve the data) – LPChip – 2019-06-25T22:16:40.987

1@LPChip you have fueled the procrastination fire that is my superuser participation – mael' – 2019-06-25T22:32:20.493

2I love the addition of the gif - I never realized the mouse behaves that way when you right-click the Windows/Start icon - even when it's behaving normally (mine does the same thing). – mael' – 2019-06-25T22:41:27.650

added a couple more things to try to my answer – mael' – 2019-06-26T01:30:12.673

Answers

4

Try following these steps:

  • Launch the Registry Editor as an administrator
  • Navigate to the following key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ ImmersiveShell\Launcher
  • Click Edit
  • Click New
  • Select DWORD (32-bit) Value
  • Name it UseExperience.
  • Double-click the newly created item and set the value to 0.
  • Click OK
  • Close the Registry Editor and then restart your computer -- or just restart Explorer.

If that doesn't work, you may also try running Powershell as administrator with the following commands:

PowerShell -ExecutionPolicy Unrestricted
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

There may be some errors you can ignore, but when it finishes it should be working... but if it's still not, there is a folder that may be corrupted or missing in your user profile:

%USERPROFILE%\AppData\Local\Microsoft\Windows\WinX

If you have access to a different machine that's not having issues, you should be able to copy the entire WinX folder into yours and see if that corrects the problem. If you don't have access to a different machine, there's a possibility that you can just create another user profile on your machine, see if your right-click is working there, and copy that folder over if it is.

References: Microsoft Answers, reddit, techmesto, and urtech.

mael'

Posted 2019-06-25T21:54:00.907

Reputation: 1 675

+1 from me. Well done. :) – LPChip – 2019-06-25T22:54:21.647

Thank you a lot for the quick answer. I've tried both solutions but there is no difference :/ – Sir Exotic – 2019-06-25T22:58:21.910

Sorry it's still giving you trouble, I've found an additional powershell line that may help you (added to my answer); try running them in the order they are listed. I'll keep looking as well; it could also be a shell issue as described here by a person with a slightly different issue (fix action requires third-party software if you're open to that): https://www.tenforums.com/general-support/101286-right-clicking-start-menu-items-not-working.html

– mael' – 2019-06-25T23:05:38.793

You're the man @mael'! I created a different user on my computer and copied the folders from %USERPROFILE%\AppData\Local\Microsoft\Windows\WinX to my main account and restarted my computer. My start menu now behaves normally again! Unfortunately I can never unsee the cursor behavior when right-clicking the start menu, haha! Thank you so much for your time and persistence! – Sir Exotic – 2019-06-26T08:43:47.500

happy to help! was an interesting issue – mael' – 2019-06-26T14:43:44.270