CoffeeMug
9th January 2004 21:54 UTC
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
10th January 2004 01:40 UTC
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
10th January 2004 02:28 UTC
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.
opher
28th January 2004 14:00 UTC
In the ArchiveComPlusAdmin
CoffeeMug
28th January 2004 17:57 UTC
Thanks. I wrote that one because I couldn't find any other ones :)
opher
29th January 2004 06:55 UTC
:D :D