DJR
Here is a workaround for you.
You can add an option to the right click context menu to register and
unregister DLL and OCX files. Copy the text between the first dashed lines
and paste it into Notepad. Save the file as regdll.reg.
Double click the file to merge it into the registry.
This will add a Register and Unregister item to the right click context
menu, when you select a DLL file.
Perform the same steps for the text between the second 2 lines. Name this
file regocx.reg. This will add the same context menu items when you right
click an ocx file.
------------------------------------------------------------------------
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\dllfile\Shell]
[HKEY_CLASSES_ROOT\dllfile\Shell\Register]
[HKEY_CLASSES_ROOT\dllfile\Shell\Register\command]
@="regsvr32.exe \\\"%1\\\""
[HKEY_CLASSES_ROOT\dllfile\Shell\UnRegister]
[HKEY_CLASSES_ROOT\dllfile\Shell\UnRegister\command]
@="regsvr32.exe /u \\\"%1\\\""
-----------------------------------------------------------------------
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\ocxfile\Shell]
[HKEY_CLASSES_ROOT\ocxfile\Shell\Register]
[HKEY_CLASSES_ROOT\ocxfile\Shell\Register\command]
@="regsvr32.exe \\\"%1\\\""
[HKEY_CLASSES_ROOT\ocxfile\Shell\UnRegister]
[HKEY_CLASSES_ROOT\ocxfile\Shell\UnRegister\command]
@="regsvr32.exe /u \\\"%1\\\""
---------------------------------------------------------------------
--
Ronnie Vernon
Microsoft MVP
Windows Shell/User
"DJR" <DJR@discussions.microsoft.com> wrote in message
news

E1761AA-8329-429C-B0E3-D92E45CE2786@microsoft.com...
> In all the other versions of Windows, you can add and edit options that
> appear on the right click menu when you click on a given file type by
> going
> to Folder Options -> File Types. I can't find a way to do this in Vista.
>
> You can select the default program to run after selecting Open With....,
> but
> that doesn't help me much. What if I want to add an option like
> unregistering a DLL. To register it, I can tell it to open with
> Regsvr32.exe. But to unregister it, I need to add the /u switch on the
> end,
> so I need to use a command.
>
> I can't believe they would remove this option from Windows, but I have
> searched everywhere and can't find any way to do it in Vista.
>
> Thanks.