Re: [WiX-users] service not showing after ServiceInstall

2007-07-27 Thread davemave

Installutil /i works just fine. 
The service gets registered and shows up in the Services Snap-in.


fiordean dacian wrote:
 
 
 Can you manually register it? I mean something like YOUR_SERVICE.exe
 /REGSERVER or similar? Does it show then?
 
 For checking if at the end of the installation it was 'registered within
 the system', you might check you registry under
 HKLM\SYSTEM\CurrentControlSet\Services even though I'm not sure if this
 'guarantees' the system is correctly registered.
 
 Dacian
 
 
 
 - Original Message 
 From: davemave [EMAIL PROTECTED]
 To: wix-users@lists.sourceforge.net
 Sent: Thursday, July 26, 2007 12:56:46 PM
 Subject: Re: [WiX-users] service not showing after ServiceInstall
 
 
 I did a verbose log install but do not know where to look for service
 installation failure in this log.
 The installer ends with succes.
 Do you have any tips on looking into the log to see if the service is
 installed or not?  
 
 
 
 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#a11808312
 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
 
 
 
 
 
 
 

 
 Yahoo! oneSearch: Finally, mobile search 
 that gives answers, not web links. 
 http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC
 -
 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#a11824279
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


Re: [WiX-users] service not showing after ServiceInstall

2007-07-27 Thread davemave

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


Re: [WiX-users] service not showing after ServiceInstall

2007-07-27 Thread Rob Mensching
The File that is the Service entrypoint must be the KeyPath for the Component.  
It doesn't appear that your Component below has any files in it so you're 
trying to make a Directory the Service entrypoint.  I'm surprised the Windows 
Installer doesn't blow up faster...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of davemave
Sent: Friday, July 27, 2007 12:25 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] service not showing after ServiceInstall


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

-
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


Re: [WiX-users] service not showing after ServiceInstall

2007-07-26 Thread Bob Arnson
davemave wrote:
 I did a verbose log install but do not know where to look for service
 installation failure in this log.
 The installer ends with succes.
 Do you have any tips on looking into the log to see if the service is
 installed or not?  
   

Just look for the IDs you use for ServiceControl and ServiceInstall.

-- 
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


Re: [WiX-users] service not showing after ServiceInstall

2007-07-26 Thread davemave

I did a verbose log install but do not know where to look for service
installation failure in this log.
The installer ends with succes.
Do you have any tips on looking into the log to see if the service is
installed or not?  



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#a11808312
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


Re: [WiX-users] service not showing after ServiceInstall

2007-07-26 Thread fiordean dacian

Can you manually register it? I mean something like YOUR_SERVICE.exe 
/REGSERVER or similar? Does it show then?

For checking if at the end of the installation it was 'registered within the 
system', you might check you registry under
HKLM\SYSTEM\CurrentControlSet\Services even though I'm not sure if this 
'guarantees' the system is correctly registered.

Dacian



- Original Message 
From: davemave [EMAIL PROTECTED]
To: wix-users@lists.sourceforge.net
Sent: Thursday, July 26, 2007 12:56:46 PM
Subject: Re: [WiX-users] service not showing after ServiceInstall


I did a verbose log install but do not know where to look for service
installation failure in this log.
The installer ends with succes.
Do you have any tips on looking into the log to see if the service is
installed or not?  



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#a11808312
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







   

Yahoo! oneSearch: Finally, mobile search 
that gives answers, not web links. 
http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC-
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


[WiX-users] service not showing after ServiceInstall

2007-07-23 Thread davemave

I've tried to install a service through the next peice of wix:

Component ..
ServiceInstall Id=service.exe DisplayName=Service
Name=Service ErrorControl=normal  
Start=auto Type=ownProcess Vital=yes 
 
/ServiceInstall

ServiceControl Id=service.exe Name=Service
Remove=uninstall Wait=yes/   
/Component

The msi installs succesfull, but I cannot find the service in the
Services.msc snap-in. 
What's missing? 

-- 
View this message in context: 
http://www.nabble.com/service-not-showing-after-ServiceInstall-tf4129869.html#a11744255
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


Re: [WiX-users] service not showing after ServiceInstall

2007-07-23 Thread Bob Arnson
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