faby
Freshman Member
Posts: 45
OS: Windows 7
|
Post by faby on May 20, 2023 22:28:45 GMT -8
Is there a way to remove these 4 items from the context menu from taskbar? it should turn out like this
|
|
|
Post by ihatemetro on May 21, 2023 5:20:42 GMT -8
1. Disable all of the options (except options that existed before such as taskbar locking) in the context menu. 2. Open Resource Hacker. Open C:\Windows\(locale folder)\explorer.exe.mui. 3. Go to Menu > 205:[locale] 4. Remove everything between
MENUITEM "&Adjust date/time", 408, MFT_STRING, MFS_ENABLED
MENUITEM "&Customize notification icons", 421, MFT_STRING, MFS_ENABLED
MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED
and
MENUITEM "Casca&de windows", 403, MFT_STRING, MFS_ENABLED
MENUITEM "Show windows stack&ed", 405, MFT_STRING, MFS_ENABLED ...
It should generally look like this afterwards:
205 MENUEX
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
{
POPUP "", 0, MFT_STRING, MFS_ENABLED, 0
{
MENUITEM "&Adjust date/time", 408, MFT_STRING, MFS_ENABLED
MENUITEM "&Customize notification icons", 421, MFT_STRING, MFS_ENABLED
MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED
MENUITEM "Casca&de windows", 403, MFT_STRING, MFS_ENABLED
MENUITEM "Show windows stack&ed", 405, MFT_STRING, MFS_ENABLED
MENUITEM "Show windows s&ide by side", 404, MFT_STRING, MFS_ENABLED
MENUITEM "&Show the desktop", 407, MFT_STRING, MFS_ENABLED
MENUITEM "&Undo", 416, MFT_STRING, MFS_ENABLED
MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED
MENUITEM "Tas&k Manager", 420, MFT_STRING, MFS_ENABLED
MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED
MENUITEM "&Lock the taskbar", 424, MFT_STRING, MFS_ENABLED
MENUITEM "&Lock all taskbars", 425, MFT_STRING, MFS_ENABLED
MENUITEM "Taskbar se&ttings", 413, MFT_STRING, MFS_ENABLED
MENUITEM "E&xit Explorer", 518, MFT_STRING, MFS_ENABLED
}
}
However, if you have a different language, it might look a bit different. You have to find the equivalent lines.
5. Compile and save file, then restart explorer.
|
|
faby
Freshman Member
Posts: 45
OS: Windows 7
|
Post by faby on May 21, 2023 5:44:16 GMT -8
Thank you very much! Everything worked out!
|
|
|
Post by anixx on May 21, 2023 16:31:22 GMT -8
On Windows 11 these are absent anyway...
|
|
|
Post by ihatemetro on May 21, 2023 18:29:32 GMT -8
On Windows 11 these are absent anyway... Unless if you enable the Windows 10 Taskbar using something like ExplorerPatcher.
|
|