0

See http://msdn.microsoft.com/en-us/library/aa767916(VS.85).aspx for Async Pluggable protocols.

We currently have it working, however it requires that we write to HKey_Class_Root. In the interest of trying to allow a non-admin install, it would be nice if we could achieve the same thing with writing to HKey_Current_User. Simply changing the registry location doesn't appear to work, and I'm wondering if it is possible

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
Davy8
  • 30,868
  • 25
  • 115
  • 173

1 Answers1

1

Figured it out, the per machine location is follows: HKCR\CLSID{DLL-GUID} But the per-user location is: HKCU\Software\Classes\CLSID{DLL-GUID}

Davy8
  • 30,868
  • 25
  • 115
  • 173