Hi Forum
is there any different from the HKLM\Software\Classes to HKLM\Software\Classes\Interface?
I'm trying to delete some registry Keys
All Keys they are directly under Classes was deleted. All with {....} still exist.
Thanks for the hint.
Rolf
is there any different from the HKLM\Software\Classes to HKLM\Software\Classes\Interface?
I'm trying to delete some registry Keys
Code:
Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\CSCOMB.CSComboBoxCtrl.1"); Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\CSSPIN.CSSpinCtrl.1"); Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\HHActiveX.GlossaryPane"); Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\HHActiveX.GlossaryPane.1"); Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\HHActiveX.HHComponentActivator"); Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\HHActiveX.HHComponentActivator.1"); Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\Interface\\{00345390-4F77-11D3-A908-00105A088FAC}"); Registry.DeleteKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Classes\\Interface\\{0BA4BA22-2EF0-11D3-88C8-00C04F72F303}");
Thanks for the hint.
Rolf
Comment