Hey everyone,
Is there a COM+ component registration / deregistration plugin available for NSIS? I've browsed the archives and searched the web but couldn't find one, so I thought I'll ask on the forums before writing one myself.
Thanks.
COM+ component registration plugin
6 posts
Why not register using NSIS's RegDll:
RegDll "$INSTDIR\component.ocx"
IfErrors error done
error:
MessageBox MB_OK|MB_ICONSTOP "Failed registering ActiveX control. Please contact support."
done:
Regards,
Henrik
RegDll "$INSTDIR\component.ocx"
IfErrors error done
error:
MessageBox MB_OK|MB_ICONSTOP "Failed registering ActiveX control. Please contact support."
done:
Regards,
Henrik
I need to register the component as a COM+ application (check administrative options on your Windows machine to see what I'm referring to). Registering it as a COM object isn't enough, it must be registered in COM+ along with appropriate settings. This is actually a rather common task, I'm surprised no one implemented a plugin for this by now.
In the ArchiveComPlusAdmin
Thanks. I wrote that one because I couldn't find any other ones 🙂
😁 😁