Registering Shell Extension Handlers
最近在做Windows shell extension 的开发工作,对shell extension handler的注册机制有点疑问,以下摘自MSDN:http://msdn.microsoft.com/en-us/library/windows/desktop/cc144067(v=vs.85).aspx
Registering Shell Extension Handlers
A Shell extension handler object must be registered before the Shell can use it. This section is a general discussion of how to register a Shell extension handler.
Any time you create or change a Shell extension handler, it is important to notify the system that you have made a change with SHChangeNotify, specifying the SHCNE_ASSOCCHANGED event. If you do not call SHChangeNotify, the change might not be recognized until the system is rebooted.
As with all COM objects, you must create a GUID for the handler using a tool such as UUIDGEN.exe. Create a key under HKEY_CLASSES_ROOT\CLSID whose name is the string form of the GUID. Because Shell extension handlers are in-process servers, you must create an InProcServer32 key under the GUID key with the default value set to the path of the handler's DLL. Use the Apartment threading model.
Any time the Shell takes an action that can involve a Shell extension handler, it checks the appropriate registry key. The key under which an extension handler is registered thus controls when it will be called. For instance, it is a common practice to have a shortcut menu handler called when the Shell displays a shortcut menu for a member of a file type. In this case, the handler must be registered under the file type's ProgID key.
Handler Names
To enable a Shell extension handler, create a subkey with the handler subkey name (see below) under the ShellEx subkey of either the ProgID (for file types) or the Shell object type name (for Predefined Shell Objects).
For example, if you wanted to register a shortcut menu extension handler for MyProgram.1, you would begin by creating the following subkey:
HKEY_CLASSES_ROOT
MyProgram.1
ShellEx
ContextMenuHandlers
For the following handlers, create a subkey underneath the "Handler Subkey name" key whose name is the string version of the CLSID of the Shell extension. Multiple extensions can be registered under the handler subkey name key by creating multiple subkeys.
| Handler | Interface | Handler Subkey Name |
|---|---|---|
| Shortcut menu handler | IContextMenu | ContextMenuHandlers |
| Copyhook handler | ICopyHook | CopyHookHandlers |
| Drag-and-drop handler | IContextMenu | DragDropHandlers |
| Property sheet handler | IShellPropSheetExt | PropertySheetHandlers |
| Column provider handler (deprecated in Windows Vista) | IColumnProvider | ColumnHandlers |
For the following handlers, the default value of the "Handler Subkey Name" key is the string version of the CLSID of the Shell extension. Only one extension can be registered for these handlers.
| Handler | Interface | Handler Subkey Name |
|---|---|---|
| Data handler | IDataObject | DataHandler |
| Drop handler | IDropTarget | DropHandler |
| Icon handler | IExtractIconA/W | IconHandler |
| Image handler | IExtractImage | {BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} |
| Thumbnail image handler | IThumbnailProvider | {E357FCCD-A995-4576-B01F-234630154E96} |
| Infotip handler | IQueryInfo | {00021500-0000-0000-C000-000000000046} |
| Shell link (ANSI ) | IShellLinkA | {000214EE-0000-0000-C000-000000000046} |
| Shell link (UNICODE) | IShellLinkW | {000214F9-0000-0000-C000-000000000046} |
| Structured storage | IStorage | {0000000B-0000-0000-C000-000000000046} |
| Metadata | IPropertyStore | PropertyHandler |
| Metadata | IPropertySetStorage (deprecated in Windows Vista) | PropertyHandler |
| Pin to Start Menu | IStartMenuPinnedList | {a2a9545d-a0c2-42b4-9708-a0b2badd77c8} |
| Pin to Taskbar | {90AA3A4E-1CBA-4233-B8BB-535773D48449} |
The subkeys specified to add Pin to Start Menu and Pin to Taskbar to an item's shortcut menu are only required for file types that include the IsShortCut entry.
Support for column provider handlers was removed in Windows Vista. Also, as of Windows Vista,IPropertySetStorage has been deprecated in favor of IPropertyStore.
While IExtractImage remains supported, IThumbnailProvider is preferred for Windows Vista and later.
Predefined Shell Objects
The Shell defines additional objects under HKEY_CLASSES_ROOT which can be extended in the same way as file types. For example, to add a property sheet handler for all files, you can register under thePropertySheetHandlers key.
HKEY_CLASSES_ROOT
*
shellex
PropertySheetHandlers
The following table gives the various subkeys of HKEY_CLASSES_ROOT under which extension handlers can be registered. Note that many extension handlers cannot be registered under all of the listed subkeys. For further details, see the specific handler's documentation.
| Subkey | Description | Possible Handlers | Version |
|---|---|---|---|
| * | All files | Shortcut Menu, Property Sheet, Verbs (see below) | All |
| AllFileSystemObjects | All files and file folders | Shortcut Menu, Property Sheet, Verbs | 4.71 |
| Folder | All folders | Shortcut Menu, Property Sheet, Verbs | All |
| Directory | File folders | Shortcut Menu, Property Sheet, Verbs | All |
| Directory\Background | File folder background | Shortcut Menu only | 4.71 |
| Drive | All drives in MyComputer, such as "C:\" | Shortcut Menu, Property Sheet, Verbs | All |
| Network | Entire network (under My Network Places) | Shortcut Menu, Property Sheet, Verbs | All |
| Network\Type\# | All objects of type # (see below) | Shortcut menu, Property Sheet, Verbs | 4.71 |
| NetShare | All network shares | Shortcut menu, Property Sheet, Verbs | 4.71 |
| NetServer | All network servers | Shortcut menu, Property Sheet, Verbs | 4.71 |
| network_provider_name | All objects provided by network provider "network_provider_name" | Shortcut menu, Property Sheet, Verbs | All |
| Printers | All printers | Shortcut Menu, Property Sheet | All |
| AudioCD | Audio CD in CD drive | Verbs only | All |
| DVD | DVD drive (Windows 2000) | Shortcut Menu, Property Sheet, Verbs | 4.71 |
Notes:
- The file folder background shortcut menu is accessed by right-clicking within a file folder, but not over any of the folder's contents.
- "Verbs" are special commands registered under HKEY_CLASSES_ROOT\Subkey\Shell\Verb .
- For Network\Type\# , "#" is a network provider type code in decimal. The network provider type code is the high word of a network type. The list of network types is given in the Winnetwk.h header file (WNNC_NET_* values). For example, WNNC_NET_SHIVA is 0x00330000, so the corresponding type key would be HKEY_CLASSES_ROOT\Network\Type\51 .
- "network_provider_name" is a network provider name as specified by WNetGetProviderName, with the spaces converted into underscores. For example, if the Microsoft Networking network provider is installed, its provider name is "Microsoft Windows Network", and the correspondingnetwork_provider_name is Microsoft_Windows_Network.
Example of an Extension Handler Registration
To enable a particular handler, create a subkey under the extension handler type key with the name of the handler. The Shell does not use the handler's name, but it must be different from all other names under that type subkey. Set the default value of the name subkey to the string form of the handler's GUID.
The following example illustrates registry entries that enable shortcut menu and property sheet extension handlers, using an example .myp file type:
HKEY_CLASSES_ROOT
.myp
(Default) = MyProgram.1
CLSID
{00000000-1111-2222-3333-444444444444}
InProcServer32
(Default) = C:\MyDir\MyCommand.dll
ThreadingModel = Apartment
{11111111-2222-3333-4444-555555555555}
InProcServer32
(Default) = C:\MyDir\MyPropSheet.dll
ThreadingModel = Apartment
MyProgram.1
(Default) = MyProgram Application
Shellex
ContextMenuHandler
MyCommand
(Default) = {00000000-1111-2222-3333-444444444444}
PropertySheetHandlers
MyPropSheet
(Default) = {11111111-2222-3333-4444-555555555555}
The registration procedure discussed in this section must be followed for all Windows systems.
Registering Shell Extension Handlers的更多相关文章
- Writing a Windows Shell Extension(marco cantu的博客)
Writing a Windows Shell Extension This is a technical article covering the content of my last week s ...
- Windows Shell Extension 系列文章
Windows Shell Extension 系列文章 http://www.codeproject.com/Articles/512956/NET-Shell-Extensions-Shell-C ...
- Link Shell Extension
Link Shell Extension http://schinagl.priv.at/nt/hardlinkshellext/linkshellextension.html
- GNOME Shell Extension常用扩展
这篇博文的,主要目的是为了方便我和大家安装GNOME扩展.我将我安装过的所有扩展列在此处. 常用扩展 Clipboard Indicator https://extensions.gnome.org/ ...
- Creating Icon Overlay Handlers / 创建图标标记 Handlers (翻译自MSDN) / VC++, Windows, DLL, ATL, COM
创建图标标记 Handlers Creating Icon Overlay Handlers 图标标记是放在代表着某个 Shell 对象的图标之左下角的小图像.它们通常被加在一个对象的图标的身上来提供 ...
- [翻译].NET Shell Extensions - Shell Context Menus---.net 外壳扩展-右键菜单
我自己的前言说明: 本文原作者为 Dave Kerr,原文链接为.NET Shell Extensions - Shell Context Menus:,我是在为了完成最新需求的时候查询资料的时 ...
- Delphi编写Shell扩展
用delphi创建一个外壳扩展(Shell Extension)程序的基本步骤如下: (1) 创建一个 ActiveX Library 工程,命名为“CloudUpload“(2) 创建一个新的自动化 ...
- Akka源码分析-Extension
一个设计优秀的工具或框架,应该都有一个易用.强大的插件或扩展体系,akka也不例外. akka的扩展方法非常简单,因为只涉及到两个组件:Extension. ExtensionId.其中Extensi ...
- 如何使用 GNOME Shell 扩展
如何使用 GNOME Shell 扩展 作者: Abhishek Prakash 译者: LCTT MjSeven | 2018-03-15 10:53 评论: 1 简介:这是一份详细指南,我将会 ...
随机推荐
- HTML5 canvas createRadialGradient()放射状/圆形渐变
定义和用法 createLinearGradient() 方法创建放射状/圆形渐变对象. 渐变可用于填充矩形.圆形.线条.文本等等. 提示:请使用该对象作为 strokeStyle 或 fillSty ...
- Linq 调试
void Main() { var MyMonitor = new Devart.Data.Oracle.OracleMonitor(); MyMonitor.IsActive = true; var ...
- 开发自己的cordova插件
如果还没有配置过cordova环境,首先要下载nodejs,(下载地址https://nodejs.org/)下载完毕安装. 控制台: 1.输入npm -v 确定是否装上了 2.输入sudo npm ...
- Java设计模式(学习整理)---策略模式
1. 模式定义 把会变化的内容取出并封装起来,以便以后可以轻易地改动或扩充部分,而不影响不需要变化的其他部分: 2.模式本质: 少用继承,多用组合,简单地说就是:固定不变的信息 ...
- java中jdk环境配置
配置java环境,俗称jdk环境 首先进入配置环境的目录下:右键鼠标我的电脑->属性->高级系统设置->环境变量,在对应的"系统变量"框下配置一下变量: 规范的配 ...
- excel poi 文件导出,支持多sheet、多列自动合并。
参考博客: http://www.oschina.net/code/snippet_565430_15074 增加了多sheet,多列的自动合并. 修改了部分过时方法和导出逻辑. 优化了标题,导出信息 ...
- css中文字体乱码解决方案
css中文字体乱码解决方案:把css编码和html页面编码统一起来.如果html页面是utf-8.css.js也统一成utf-8编码.还有一个避免中文乱码的办法就是把中文字体写成英文来表示 css中文 ...
- Weinre在iOS 7上不工作的原因
升级到iOS 7 后发现Weinre不能工作了,通过Safari调试发现报错如下: [Error] SecurityError: DOM Exception 18: An attempt was ma ...
- Iis 日志文件默认路径
Iis 日志文件默认路径: C:\WINDOWS\system32\LogFiles
- Android单元测试初探——Instrumentation(转载)
学习Android有一段时间了,虽然前段时间对软件测试有了一些了解,不过接触android的单元测试却是头一次.这几天在物流大赛上也用了不少时间,所以对于android的单元测试没有太深入的研究,所以 ...