Home » Questions » Computers [ Ask a new question ]

Windows 7 explorer tweaks

Windows 7 explorer tweaks

On the Windows Vista taskbar, you can middle-click an icon to open a new instance of a program. In a Windows Vista explorer window address bar (the thing that shows the current file path as a bunch of clickable folders seperated by arrows,) you should be able to middle-click a folder and open a new window there. Is there anyway I could write code to modify Windows to do this?

Asked by: Guest | Views: 264
Total answers/comments: 1
Guest [Entry]

"This can be done if you learn assembly, debugging and reverse engineering. One can then adjust the binary to register the middle click event and let it call a function to open a new window, this would require one two write two assembly routines and store them in the explorer.exe executable. This is a very hard thing to do! Not to forget you will have to work around the SFC security...

Another solution is to write a higher level hook that hooks middle clicks on the folder and then determines what folder it is and then opens a new window with that folder, this is a lot easier but you still would need to learn the higher level language and how to hook things.

When you ask the question on StackOverflow you will tend to get more details on how to do this..."