Reputation: 21
For example, if I made a compressor using the .NET Framework. How would I be able to right click a folder and open it in the compressor to compress it?
Upvotes: 2
Views: 570
Reputation: 17194
Add a key under HKCR / filetype / Shell
(where filetype is the filetype associated with the file extension, e.g. jpegfile)
For more details check this: Add a context menu on right-click
Upvotes: 1
Reputation: 30728
You need to associate file type (based on extension) with your compressor application.
For details check the article Understanding MS Windows File Associations.
It requires some registry entry modifications, that can be done from installer application.
Upvotes: 1