Registering Your Namespace Extension

Registering your extension is not particularly difficult but it must be done precisely or users will never find your namespace extension. Consider the following registry entries, some of which are required for any namespace extension.

Namespace extensions, like all COM objects, must be registered in the CLSID section. In addition, they also have to be "apartment aware", having the named value ThreadingModel set to Apartment, as shown below.

HKEY_CLASSES_ROOT\CLSID\{CLSID}

HKEY_CLASSES_ROOT_CLSID\{CLSID}\InProcServer32\(default)=path\filename.dll

HKEY_CLASSES_ROOT_CLSID\{CLSID} \InProcServer32\"ThreadingModel" = "Apartment"

If your namespace extension is going to run under a rooted Explorer, you should add the following entries so the Open and Explorer verbs appear on your namespace extension.

HKEY_CLASSES_ROOT_CLSID\{CLSID}\Shell\Open\Command\(default)

=c:\windows\explorer.exe/root,%1

HKEY_CLASSES_ROOT_CLSID\{CLSID}\Shell\Explore\Command\(default)

=c:\windows\explorer.exe/e,/root/%1

You can also include entries under the following key for the default icon.

HKEY_CLASSES_ROOT_CLSID\{CLSID}\DefaultIcon\(default)="path\filename.dll",IconIndex

The following is an optional key but one that can be very important. If you include the "Attributes" named value under ...{CLSID}\ShellFolder, it specifies the attributes of a junction point by using the SFGAO_* flags returned by the IShellFolder::GetAttributesOf method.

HKEY_CLASSES_ROOT_CLSID\{CLSID}\ShellFolder\Attributes = 0000 00 00

For example, if the SFGAO_FOLDER flag is set and its junction point exists in the system namespace, the user sees your extension's icon in the Explorer's left pane and is able to browse into it using the standard (nonrooted) Explorer. If this flag is not set, you must provide a rooted Explorer for browsing

Another example is the SFGAO_HASSUBFOLDER flag. If it is set, the Explorer can make the extension's icon expandable to the next level by displaying the + icon to its left.

Other registry entries you should know about include those required for putting items into MyComputer or on the Desktop. The following entries list all the items in those two locations:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer

\MyComputer\NameSpace

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer

\Desktop\NameSpace

Finally, the following entry is currently required only for Windows NT but it should always be included for future compatibility. This is the list of extensions that the shell will load. Extensions not on this list will not be loaded by the shell on NT.

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\ShellExtensions

\Approved\{CLSID}="Extension Name"

Software for developers
Delphi Components
.Net Components
Software for Android Developers
More information resources
MegaDetailed.Net
Unix Manual Pages
Delphi Examples
Databases for Amazon shops developers
Amazon Categories Database
Browse Nodes Database