Great tip, 
I think I found it:

MSI (s) (18:50) [11:49:52:515]: Feature: ProductFeature; Installed: Absent;  
Request: Local;   Action: Local
MSI (s) (18:50) [11:49:52:515]: Component: ProductComponent; Installed:
Absent;   Request: Local;   Action: Local
MSI (s) (18:50) [11:49:52:515]: Component:
AtAdapterService.Basisverzekering.dll; Installed: Absent;   Request: Local;  
Action: Local
MSI (s) (18:50) [11:49:52:515]: Component: AtAdapterService.dll; Installed:
Absent;   Request: Local;   Action: Local

Everyting is "Installed: Absent;". 
Which means :   Component or feature is not currently installed.
according to http://msdn2.microsoft.com/EN-US/library/aa367858.aspx

I'm doing something wrong in my wix probably, it looks like this:

...
<Component Id="ProductComponent"
Guid="409c8e05-b542-42db-a616-efbcc7ce9551">

  <ServiceInstall Id="MessageQueueListener.exe"                            
                  DisplayName="MessageQueue Listener Service"
                  Name="MessageQLService"                           
                  ErrorControl="normal"  
                  Start="auto" 
                  Type="ownProcess" 
                  Vital="yes">              
  </ServiceInstall>

  <ServiceControl Id="MessageQueueListener.exe" Name="MessageQLService"
Remove="uninstall" Wait="yes"/>            
  
  <CreateFolder/>
</Component>
...

<Feature Id="ProductFeature" Title="MessageQueue Listener"
ConfigurableDirectory="INSTALLLOCATION" Level="1">
  <ComponentGroupRef Id="ComponentGroup1"/>
  <ComponentRef Id="ProductComponent" />
</Feature>
...

What is wrong? I can't see it. Why isn't the service installed.



Bob Arnson-6 wrote:
> 
> davemave wrote:
>> The msi installs succesfull, but I cannot find the service in the
>> Services.msc snap-in. 
>> What's missing? 
>>   
> 
> Check a verbose log to make sure the component is being installed and 
> the service registered.
> 
> -- 
> sig://boB
> http://joyofsetup.com/
> 
> 
> 
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/service-not-showing-after-ServiceInstall-tf4129869.html#a11824263
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to