1

I just added a registry key to have "copy to .." in my right click context menu. I used this how-to:

http://www.howtogeek.com/howto/windows/add-copy-to-move-to-to-the-windows-explorer-right-click-menu/

What is puzzling me is where to get the information from that I have to enter this strange key value

{C2FBB630-2971-11D1-A18C-00C04FD75D13}

Which seems to me is some sort of hexadecimal value enabling the right click Explorer menu. But how exactly was this menu obtained in the first place? It just seems to me everybody or at least many people know about this hack but no one seems to know what this value stands for and where does it come from and how it was obtained. Is there a whitepaper from Microsoft or something?

2
  • What version of windows exactly are we dealing with? As to how this version was determined, it likely came from trial and error, more information on the type of value would need to be known.
    – Ramhound
    Commented Dec 4, 2012 at 16:05
  • this hack seems to work with windows 7 and xp and i am not sure but i think it will work on vista too.
    – l1zard
    Commented Dec 4, 2012 at 16:07

1 Answer 1

3

The number is called a GUID (Globally unique identifier) and it is used a lot under the hood in Windows and many other IT systems.

This particular value is a constant for the "Microsoft CopyTo Service." At some point, Microsoft (and someone else) made this up and since then that string of characters is used to identify that particular feature of Windows.

There are many different types of objects in Windows that are identified with GUID. Normally, the user is shielded from seeing these, but when you edit the registry, you usually come across them.

This one may have been present since Windows 95.

2
  • is there a way to gain this guids in windows or do you know the most common ones?
    – l1zard
    Commented Dec 4, 2012 at 18:01
  • 3
    Open regedit.exe and navigate to 'HKEY_CLASSES_ROOT\CLSID' right click on CLSID and select 'Export', save the file and then open it in Notepad. On my machine there are 9000+ GUIDs in there, enjoy. Commented Dec 4, 2012 at 18:32

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .