2

I recently discovered process explorer (https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx) and would like to add it to the context menu when you right click on the taskbar. It has the option to replace the task manager but I want to keep both. I want to add a menu called Process Explorer underneath of task manager, where the red arrow is pointing. Where can I find this in the registry? I've been searching but I cant find where this context menu is under the registry editor.

EDIT: I am on Windows 8.1 pro, and know how to use Registry editor and know a little on resource hacker. I have been looking for any register values with Taskbar, task manger, lock the taskbar etc. but I have found nothing. I made a copy of the explorer.exe to dissect but I don't see anything really editable. Any help is appreciated :)

EDIT2:I know how to add custom items to the right click context menu, but I need to add it to the context menu on the taskbar, which I cannot find. Can someone Please help me!!!

What I have: Taskbar Context Menu

What I want PAINTED:enter image description here

asked Mar 7, 2016 at 16:43
11
  • Might not be exactly what you're looking for, but does this help? lifehacker.com/… Commented Mar 7, 2016 at 17:52
  • Thanks but this is not what I was looking for. I know how to do that, that is adding items to the windows explorer/file explorer context menu. I need to add something to the taskbar menu. Thanks for replying anyway :) Commented Mar 7, 2016 at 22:21
  • Closer, but not exactly what you are looking for is Win+X Menu Editor. It lets you add programs to the context menu of the start button in Windows 8.1, also accessible by pressing Windows key + X. Commented Apr 22, 2016 at 16:29
  • Not quite what I was looking for, but thanks anyway. I still need to figure out how to add it to taskbar, not Win+x menu. Commented Apr 22, 2016 at 16:31
  • that's not possible, inside Process Explorer, select the option to replace Taskmgr with Process Explorer and when you now select Taskmgr, PE is started instead Commented Apr 25, 2016 at 4:24

3 Answers 3

4
+50

(Copied from comments as per TO's request):

The thing is, this menu is (as far as I know) not defined by external parameters in the registry or something, it's just part of the logic inside explorer.exe. So we would need to effectively modify explorer.exe's logic, which is possible by loading our own code into it and intercepting the action of opening the popup so we can add the item, and then intercepting Windows' message that somebody clicked on our item so we can react on it.

The only way I would know is building a tool which injects a DLL into explorer using a global WH_CALLWNDPROC hook in order to manipulate the menu on WM_INITMENUPOPUP to add the menu item and react on the WM_COMMAND message sent by the newly added menu item by opening Process Explorer.

However I don't have the time right now to build this tool myself, but I can give hints:

You would need to google for windows hooks (SetWindowsHookEx, CallWndProc), window message processing (in case that's new to you) and window subclassing (SetWindowLong, GWL_WNDPROC, CallWindowProc). Identifying explorer: GetModuleFileName (while your hook is loaded into it). And identifying the right menu to modify (modify: using InsertMenuItem) is a challenge on its own (although you could probably check the IDs of the existing menu items to identify the menu - GetMenuItemCount, GetMenuItemInfo). To finally run Process Explorer, you would need CreateProcess or ShellExecute.

This could of course be combined with my comment here but it won't make much sense because if you are going the hook method anyway, you can also just add the item from there, then you don't have to modify any system files.

answered Apr 29, 2016 at 14:49
0
0

EDIT : not the correct answer, though I'll leave it here for completeness and history.


It's inside shell32.dll

Try running:
grep -ain "taskmgr.exe" shell32.dll > shell32-grep.txt
Most of the text you'll receive will be an xml. Open it with a text editor and search for taskmgr.exe, you'll find it in the tag <sh:command>. Look around and you'll see the other options (and bunch of others) as well under other <sh:command> tags.

For example, the %windir%\system32\rundll32.exe shell32.dll,Options_RunDLL 3 command is the properties button.

As I see it, the only option you have for doing that is editing shell32.dll with a dll editor and hope for good :)

answered Apr 29, 2016 at 14:10
3
  • That's not it. What you see is the embedded list of tasks and their keywords which you can search for in the start menu/cortana/etc. - e.g. when you enter "processes", it will look up this XML (together with the strings in the MUI file) and find the "task manager" task most fitting and offer it to you. It's not the taskbar context menu, which is in explorer.exe's local MUI file, e.g. c:\windows\system32\en-US\explorer.exe.mui, as MENU resource ID 205 - but adding a new item here won't help much - it will be there but not do anything, you would still need to inject code into the process. Commented Apr 29, 2016 at 14:45
  • oh, ok. good to know! Commented Apr 29, 2016 at 14:49
  • Plus, grep isn't on Windows machines by default. The equivalent would be findstr but with different params. And just for sake of completeness, what could be used to both view, search and edit the code there would be Resource Hacker, for example. Commented Apr 29, 2016 at 14:51
0

Might not be exactly what you are looking for, but you could always create a folder in which you put the shortcuts you want to various programs, (like Process Explorer), and add it to the taskbar as a new toolbar.

answered Jun 12, 2018 at 23:47

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.