This article from Rob M. mentions DCOM.
Maybe there's something in the download link?

(watch for wrap)
http://robmensching.com/blog/posts/2007/3/12/RobMens-Recommendation-Do-not-a
dvertise-COM-information-in-MSI



-----Original Message-----
From: MacDiarmid, James D [mailto:james.macdiar...@eds.com] 
Sent: Monday, April 27, 2009 1:04 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] How would I register a COM+ serviceusing
Wix(DCOMCNFG)


Phil,  Thanks for the info.  I'll give this a try but let me ask.  When
you say COM+ is this going to appear under the COM+ Applications folder
or under the DCOM Config Folder? 

Thx

-----Original Message-----
From: Phil Sayers [mailto:p...@cds-am.net] 
Sent: Monday, April 27, 2009 11:42 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] How would I register a COM+ serviceusing
Wix(DCOMCNFG)

I use something like this to create a COM+ app...
I think my need for CreateFolder comes from something else in my wxs
that I haven't had time to work out, but I found that I needed it for my
situation.

This works for me,....using Wix 3.0.4603 At the top of your wxs file...
include...

xmlns:complus ="http://schemas.microsoft.com/wix/ComPlusExtension";

as part of the <Wix......>  tag so you have something similar to this:

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";
          xmlns:complus
="http://schemas.microsoft.com/wix/ComPlusExtension";>


You'll need a reference to the ComPlusExtension

Then you can add something like this as a component.

<Component Id="xxxxx" Guid="xxxxx" Directory="Folder1">
        <CreateFolder/>
        <complus:ComPlusApplication Id="MyComPlusApp"
Name="NameYouWantToSeeInComPlusManager"
ApplicationAccessChecksEnabled="no"
Identity="WindowsUserName" Password="SuperSecretPassword">
                <complus:ComPlusAssembly Id="MyComPlusAssm"
Type="native"
DllPath="[FileIdOfTheDll]">
                        <complus:ComPlusComponent
Id="MyComPlusComponent"
CLSID="GUIDMojo" />
                </complus:ComPlusAssembly>
        </complus:ComPlusApplication>
</Component>


        
        

-----Original Message-----
From: MacDiarmid, James D [mailto:james.macdiar...@eds.com]
Sent: Monday, April 27, 2009 10:45 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] How would I register a COM+ service using
Wix(DCOMCNFG)


Not yet.  Where can I find out more on that? 

-----Original Message-----
From: Brian Rogers [mailto:rogers.br...@gmail.com] 
Sent: Friday, April 24, 2009 6:36 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] How would I register a COM+ service using
Wix(DCOMCNFG)

Hey James,

Have you looked into the WiX COM+ public custom actions at all?

Thanks,

Brian Rogers
"Intelligence removes complexity." - Me
http://icumove.spaces.live.com


On Fri, Apr 24, 2009 at 12:41 PM, MacDiarmid, James D <
james.macdiar...@eds.com> wrote:

>
> Right now I have to go through DCOMCNFG to set service parameters.  
> How would do this using Wix?
>
> Thanks,
> Jim
>
> ----------------------------------------------------------------------
> -------- Crystal Reports &#45; New Free Runtime and 30 Day Trial Check

> out the new simplified licensign option that enables unlimited 
> royalty&#45;free distribution of the report engine for externally 
> facing server and web deployment.
> http://p.sf.net/sfu/businessobjects
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
------------------------------------------------------------------------
------
Crystal Reports &#45; New Free Runtime and 30 Day Trial Check out the
new simplified licensign option that enables unlimited royalty&#45;free
distribution of the report engine for externally facing server and web
deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------
----
--
Crystal Reports &#45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty&#45;free distribution of the report engine for externally facing

server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


------------------------------------------------------------------------
------
Crystal Reports &#45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty&#45;free distribution of the report engine for externally facing

server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

----------------------------------------------------------------------------
--
Crystal Reports &#45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty&#45;free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


------------------------------------------------------------------------------
Crystal Reports &#45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty&#45;free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to