How to enter CLSID in registry?
-
Hello, Even after making all the possible changes in the InstallShield, I am still not able to get the CLSID in the registry while installing a software. What changes do I have to make in the InstallShield to get it done or how to enter CLSID in the registry? thanks in advance.
Software Developer Sanjay Khapre
-
Hello, Even after making all the possible changes in the InstallShield, I am still not able to get the CLSID in the registry while installing a software. What changes do I have to make in the InstallShield to get it done or how to enter CLSID in the registry? thanks in advance.
Software Developer Sanjay Khapre
if its a COM component you usually call/use regsvr32 :- http://support.microsoft.com/kb/249873[^] 'g'
-
Hello, Even after making all the possible changes in the InstallShield, I am still not able to get the CLSID in the registry while installing a software. What changes do I have to make in the InstallShield to get it done or how to enter CLSID in the registry? thanks in advance.
Software Developer Sanjay Khapre
If you are asking how to progmatically register the COM objects its quite easy. You simply need to call DllRegisterServer[^] for each library and the registry entries for all classes should be entered into the registry. Some additional documentation: INFO: How Regsvr32.exe Registers and Unregisters COM DLLs[^] Best Wishes, -David Delaune