Sinisterly
[RELEASE] Context menu adder (updated) - Printable Version

+- Sinisterly (https://sinister.li)
+-- Forum: Coding (https://sinister.li/Forum-Coding)
+--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework)
+--- Thread: [RELEASE] Context menu adder (updated) (/Thread-RELEASE-Context-menu-adder-updated)



[RELEASE] Context menu adder (updated) - Bish0pQ - 12-27-2016

So this is something I just wrote in C#. Polished it a bit and releasing it now. It adds/removes a program/file to your context menu.

Look at the GIF below to see what it exactly does.
[Image: ajcbdi.gif]

Version: 1.0.1.0
Changelog:
Code:
1.0.1.0 [+] Minor GUI changes [+] Option to remove things from context menu [+] Changed update function [+] Minor bug fixes 1.0.0.0 [+] Initial release

Coming soon:
  • Create sub-context menus
  • Add more functionality (like bitm0de said)
  • Any suggestion made by you guys

Supported OS':
- Windows 10
- Windows 7

Download: Click Here
Virustotal: Click Here


RE: [RELEASE] Context menu adder - Pikami - 12-27-2016

Nice!
But does it work on WinXP?


RE: [RELEASE] Context menu adder - Bish0pQ - 12-27-2016

(12-27-2016, 06:53 PM)Pikami Wrote: Nice!
But does it work on WinXP?

Good question, will test it when I get home. I'm not sure, since the registry of XP is pretty different.


RE: [RELEASE] Context menu adder - Pikami - 12-27-2016

(12-27-2016, 06:58 PM)Bish0pQ Wrote:
(12-27-2016, 06:53 PM)Pikami Wrote: Nice!
But does it work on WinXP?

Good question, will test it when I get home. I'm not sure, since the registry of XP is pretty different.

Just tested it.
It doesn't work.


RE: [RELEASE] Context menu adder - Bish0pQ - 12-27-2016

(12-27-2016, 07:07 PM)Pikami Wrote:
(12-27-2016, 06:58 PM)Bish0pQ Wrote:
(12-27-2016, 06:53 PM)Pikami Wrote: Nice!
But does it work on WinXP?

Good question, will test it when I get home. I'm not sure, since the registry of XP is pretty different.

Just tested it.
It doesn't work.

I'll fix that when I get home.


RE: [RELEASE] Context menu adder - bitm0de - 12-28-2016

(12-27-2016, 07:10 PM)Bish0pQ Wrote:
(12-27-2016, 07:07 PM)Pikami Wrote:
(12-27-2016, 06:58 PM)Bish0pQ Wrote: Good question, will test it when I get home. I'm not sure, since the registry of XP is pretty different.

Just tested it.
It doesn't work.

I'll fix that when I get home.

It's just as easy to do this manually, but as far as I can tell you're just adding a context menu handler for the desktop. This would be more useful if you could add it for specific filetypes including *.* (all filetypes), or directories, and other invokers including holding down shift (which prompts a context menu with more hidden options that you can configure via regedit too).


RE: [RELEASE] Context menu adder - insidious - 12-29-2016

This is pretty nifty!

I can't use it because i'm mostly a linux guy and rarely ever modify registry keys on Windows, but it looks quite helpful


RE: [RELEASE] Context menu adder - Bish0pQ - 12-29-2016

(12-28-2016, 11:59 PM)bitm0de Wrote:
(12-27-2016, 07:10 PM)Bish0pQ Wrote:
(12-27-2016, 07:07 PM)Pikami Wrote: Just tested it.
It doesn't work.

I'll fix that when I get home.

It's just as easy to do this manually, but as far as I can tell you're just adding a context menu handler for the desktop. This would be more useful if you could add it for specific filetypes including *.* (all filetypes), or directories, and other invokers including holding down shift (which prompts a context menu with more hidden options that you can configure via regedit too).

Not for everyone, there are plenty of people that don't know how to use the registry or don't know where to add things for the context menu.

Great tip though, thank you, I'm not sure what you mean exactly, if you could elaborate? I might add it too. First I'm going to add the things that are in the thread itself (ability to remove something from the menu, and read what is in the context menu).


RE: [RELEASE] Context menu adder - bitm0de - 12-29-2016

(12-29-2016, 10:45 AM)Bish0pQ Wrote:
(12-28-2016, 11:59 PM)bitm0de Wrote:
(12-27-2016, 07:10 PM)Bish0pQ Wrote: I'll fix that when I get home.

It's just as easy to do this manually, but as far as I can tell you're just adding a context menu handler for the desktop. This would be more useful if you could add it for specific filetypes including  *.* (all filetypes), or directories, and other invokers including holding down shift (which prompts a context menu with more hidden options that you can configure via regedit too).

Not for everyone, there are plenty of people that don't know how to use the registry or don't know where to add things for the context menu.

Great tip though, thank you, I'm not sure what you mean exactly, if you could elaborate? I might add it too. First I'm going to add the things that are in the thread itself (ability to remove something from the menu, and read what is in the context menu).

http://stackoverflow.com/a/2069565

^ As an example

You can also have items that show up only when you right click while holding shift. There's other UAC stuff too, and Icons, which you haven't added the functionality for which is another value. There's also submenu items that you can create from the registry for better organization.


RE: [RELEASE] Context menu adder - Bish0pQ - 02-03-2017

Program is updated, check the changelog to see what has changed. Any suggestions are welcome as well.