Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Right-click customizations not working

Reply
Thread Tools Display Modes

Right-click customizations not working

 
 
Graham Graywing
Guest
Posts: n/a

 
      02-20-2008
Moved to Vista from XP, and my registry tweaks to modify the right-click
menu on explorer don't work any more.
I've googled this, but nodice - they should work but explorer steadfastly
ignores me. UAC is off and I have admin privs.

This:
=============================================
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\dllfile\shell\Register]

[HKEY_CLASSES_ROOT\dllfile\shell\Register\command]
@="regsvr32.exe %1"
=============================================

Should give me a right-click option "Register".

Anyone any clue?

---
Graham

 
Reply With Quote
 
 
 
 
Jon
Guest
Posts: n/a

 
      02-20-2008
Well there's nothing wrong with the tweak per se. Works fine here.

Check in the registry at that particular location, for additional keys /
values. These are the default settings (I think), with nothing additional in
the context menu ....

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\dllfile]
"AlwaysShowExt"=""
@="Application Extension"
"EditFlags"=hex:01,00,00,00
"FriendlyTypeName"="@shell32.dll,-10146"
"NoOpen"=""

[HKEY_CLASSES_ROOT\dllfile\DefaultIcon]
@="imageres.dll,-67"

--
Jon


"Graham Graywing" <> wrote in message
news:...
> Moved to Vista from XP, and my registry tweaks to modify the right-click
> menu on explorer don't work any more.
> I've googled this, but nodice - they should work but explorer steadfastly
> ignores me. UAC is off and I have admin privs.
>
> This:
> =============================================
> Windows Registry Editor Version 5.00
>
> [HKEY_CLASSES_ROOT\dllfile\shell\Register]
>
> [HKEY_CLASSES_ROOT\dllfile\shell\Register\command]
> @="regsvr32.exe %1"
> =============================================
>
> Should give me a right-click option "Register".
>
> Anyone any clue?
>
> ---
> Graham


 
Reply With Quote
 
Graham Graywing
Guest
Posts: n/a

 
      02-20-2008
Hi Jon

All looks exactly as yours. In fact the full key is:

=================================================
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\dllfile]
"AlwaysShowExt"=""
@="Application Extension"
"EditFlags"=hex:01,00,00,00
"FriendlyTypeName"="@shell32.dll,-10146"
"NoOpen"=""

[HKEY_CLASSES_ROOT\dllfile\DefaultIcon]
@="imageres.dll,-67"

[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"

[HKEY_CLASSES_ROOT\dllfile\shell\View Dependencies]

[HKEY_CLASSES_ROOT\dllfile\shell\View Dependencies\command]
@="C:\\UTILIT~1\\Depends\\depends.exe /dde"

[HKEY_CLASSES_ROOT\dllfile\shell\View Dependencies\ddeexec]
@="[open(\"%1\")]"

================================================== =======

There is also an entry in HKCR for ".dll". Deleting this doesn't make any
difference.
Perhaps it's disabled somewhere else. The PC is an HP laptop.

---
Graham

"Jon" <> wrote in message
news:%...
> Well there's nothing wrong with the tweak per se. Works fine here.
>
> Check in the registry at that particular location, for additional keys /
> values. These are the default settings (I think), with nothing additional
> in the context menu ....
>
> Windows Registry Editor Version 5.00
>
> [HKEY_CLASSES_ROOT\dllfile]
> "AlwaysShowExt"=""
> @="Application Extension"
> "EditFlags"=hex:01,00,00,00
> "FriendlyTypeName"="@shell32.dll,-10146"
> "NoOpen"=""
>
> [HKEY_CLASSES_ROOT\dllfile\DefaultIcon]
> @="imageres.dll,-67"
>
> --
> Jon
>
>
> "Graham Graywing" <> wrote in message
> news:...
>> Moved to Vista from XP, and my registry tweaks to modify the right-click
>> menu on explorer don't work any more.
>> I've googled this, but nodice - they should work but explorer steadfastly
>> ignores me. UAC is off and I have admin privs.
>>
>> This:
>> =============================================
>> Windows Registry Editor Version 5.00
>>
>> [HKEY_CLASSES_ROOT\dllfile\shell\Register]
>>
>> [HKEY_CLASSES_ROOT\dllfile\shell\Register\command]
>> @="regsvr32.exe %1"
>> =============================================
>>
>> Should give me a right-click option "Register".
>>
>> Anyone any clue?
>>
>> ---
>> Graham

>


 
Reply With Quote
 
Jon
Guest
Posts: n/a

 
      02-20-2008
"Graham Graywing" <> wrote in message
news:...
> There is also an entry in HKCR for ".dll". Deleting this doesn't make any
> difference.
> Perhaps it's disabled somewhere else. The PC is an HP laptop.
>
> ---
> Graham



Ok, well this is perhaps the problem. You need that entry in HKCR for .dll -
in fact it's pretty essential - since it's via that entry that it finds the
'dllfile' entry. So if you've deleted it then that would explain it. It
should be ( I think) ....

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.dll]
@="dllfile"
"Content Type"="application/x-msdownload"

[HKEY_CLASSES_ROOT\.dll\PersistentHandler]
@="{098f2470-bae0-11cd-b579-08002b30bfeb}"


You'll notice that the default key for HKCR\.dll contains 'dllfile' which
points to the other entry.

--
Jon



 
Reply With Quote
 
Graham Graywing
Guest
Posts: n/a

 
      02-20-2008
No, I only temporarily deleted ".dll" to see if it made any difference. I
put it back and
now it looks like yours.

I suppose I could reboot and see if it makes a difference.

Perhaps there's a group policy that prevents these things working. I do
have a workaround - I put the shortcuts into the "SendTo" folder, so now I
can register or unregister ANY file!

I've just discovered (while writing this) that my similar setup for ocx
files and exe files both work OK. I'll compare the registry entries and see
if I can spot anyting.

---
Graham


"Jon" <> wrote in message
news:usqBFJ%...
> "Graham Graywing" <> wrote in message
> news:...
>> There is also an entry in HKCR for ".dll". Deleting this doesn't make
>> any difference.
>> Perhaps it's disabled somewhere else. The PC is an HP laptop.
>>
>> ---
>> Graham

>
>
> Ok, well this is perhaps the problem. You need that entry in HKCR for
> .dll - in fact it's pretty essential - since it's via that entry that it
> finds the 'dllfile' entry. So if you've deleted it then that would explain
> it. It should be ( I think) ....
>
> Windows Registry Editor Version 5.00
>
> [HKEY_CLASSES_ROOT\.dll]
> @="dllfile"
> "Content Type"="application/x-msdownload"
>
> [HKEY_CLASSES_ROOT\.dll\PersistentHandler]
> @="{098f2470-bae0-11cd-b579-08002b30bfeb}"
>
>
> You'll notice that the default key for HKCR\.dll contains 'dllfile' which
> points to the other entry.
>
> --
> Jon
>
>
>


 
Reply With Quote
 
Jon
Guest
Posts: n/a

 
      02-20-2008
"Graham Graywing" <> wrote in message
news:utAajV%...

> I suppose I could reboot and see if it makes a difference.
>



It may do, or at least explorer could probably do with a restart, after
playing with extensions.

Otherwise I don't know. Strange one, if the reboot doesn't fix it.

--
Jon



 
Reply With Quote
 
Graham Graywing
Guest
Posts: n/a

 
      02-21-2008
I only delete ".dll" temporarily - it's back now and no difference.

Interestingly have a similar setup for .ocx files which works OK. Most
mystifying.

"Jon" <> wrote in message
news:usqBFJ%...
> "Graham Graywing" <> wrote in message
> news:...
>> There is also an entry in HKCR for ".dll". Deleting this doesn't make
>> any difference.
>> Perhaps it's disabled somewhere else. The PC is an HP laptop.
>>
>> ---
>> Graham

>
>
> Ok, well this is perhaps the problem. You need that entry in HKCR for
> .dll - in fact it's pretty essential - since it's via that entry that it
> finds the 'dllfile' entry. So if you've deleted it then that would explain
> it. It should be ( I think) ....
>
> Windows Registry Editor Version 5.00
>
> [HKEY_CLASSES_ROOT\.dll]
> @="dllfile"
> "Content Type"="application/x-msdownload"
>
> [HKEY_CLASSES_ROOT\.dll\PersistentHandler]
> @="{098f2470-bae0-11cd-b579-08002b30bfeb}"
>
>
> You'll notice that the default key for HKCR\.dll contains 'dllfile' which
> points to the other entry.
>
> --
> Jon
>
>
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
right click stopped working... annold Windows Vista General Discussion 2 12-05-2007 04:46 PM
Re: Right click stops working/New tabs stop working/Menu bar disappear Robert Aldwinckle Windows Vista Performance 8 11-20-2007 08:03 PM
Right click stops working rsottney Windows Vista General Discussion 1 11-19-2007 08:51 PM
Right click menu not working Bill871 Windows Vista Mail 4 08-22-2007 12:55 AM
folder customizations Steven Wabik Windows Vista General Discussion 0 07-04-2006 07:37 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59