Skip to content
⌘ NSIS Forum Archive

COM+ component registration plugin

6 posts

CoffeeMug#

COM+ component registration plugin

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.
pfluger#
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
CoffeeMug#
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.