Re: [WiX-users] Feature element - Condition nightmare

2007-08-17 Thread Adrian Gantoi
No , it still does not work as I intend.
Is it possible to use FileSearch to set a property
used in a Condition for a Feature or I started on the wrong road ?



- Original Message 
From: Alexei [EMAIL PROTECTED]
To: wix-users@lists.sourceforge.net
Sent: Thursday, August 16, 2007 2:44:59 PM
Subject: Re: [WiX-users] Feature element - Condition nightmare


Adrian,
I haven't tried this but what I would do is when you declare your Property -
omit the Value attribute.
This way the property will be undefined.
Then when you are checking use something like:

Feature Id=ProductFeature Title=MainFeature Level=1
  Feature Id=FeatureToInstallWhenOCXMissing Display=hidden
Level=1
Condition Level=0[FOUNDTABCTL32]/Condition
ComponentRef Id=ProductComponent/
  /Feature
/Feature

This way when the FileSearch finds something then [FOUNDTABCTL32] will be
defined and the condition will hold, thereby setting the
FeatureToInstallWhenOCXMissing Level=0

Tell me if this helps at all,
Alexei


Adrian Gantoi wrote:
 
 Hi all,
 
 I'm having a problem with correctly specifying the Feature's Condition.
 My goal - make a search of an ocx file, and if the ocx file does not exist
 on the target computer,
 keep a feature selected for installation.
 If the ocx exists, the feature should be automatically deselected.
 I'm currently having doubts if this is possible, since FileSearch should
 return a string...
 My code below:
 
 Property Id=FOUNDTABCTL32 Value=o Secure=yes
   FileSearch Id=FOUNDTABCTL32 Name=tabctl32.ocx/
 /Property
 
 Feature Id=ProductFeature Title=MainFeature Level=1
   Feature Id=FeatureToInstallWhenOCXMissing Display=hidden
 Level=1
 Condition Level=0![CDATA[FOUNDTABCTL32]]/Condition
 ComponentRef Id=ProductComponent/
   /Feature
 /Feature
 
 Am I doing something wrong or this is not possible ?
 
 Thanks for any help,
 Adrian
 

-- 
View this message in context: 
http://www.nabble.com/Feature-element---Condition-nightmare-tf4279047.html#a12179726
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


   

Pinpoint customers who are looking for what you sell. 
http://searchmarketing.yahoo.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] SQL-Error VS-Error

2007-08-17 Thread myspam
I'm using the version 3.0.2925
In the meantime I got another problem:
As I started the wix-solution in VS2005, I got an error Make sure the
application for the project type (.wixproj) is installed.
I found the following (rather old) posting where a workaround is
described:
http://osdir.com/ml/windows.devel.wix.devel/2006-09/msg00040.html
I tried to 'work around' but it didn’t work out.
Any ideas?
Thank's,
Chris

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Mensching
Sent: Donnerstag, 16. August 2007 17:29
To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] SQL-Error

What versoin of the WiX toolset are you using?  There was a bug like this
in a build a while ago.  Recent builds should be working fine.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, August 16, 2007 7:29 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] SQL-Error

(sorry, forgot the subject before)

Hi all,
I tried to 'candlelight' the sql-example which is on the wix-wiki-page:
http://www.wixwiki.com/images/c/c1/WixSqlDatabaseSample.zip and after
executing 'light' I get following error:

C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27,0):
Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in
section 'Fragment:'.
C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28,0):
Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in
section 'Fragment:'.
Done building project WixSqlDatabaseSample.wixproj -- FAILED.

The thing is the folder 'C:\delivery' doesnt exist! Any ideas?
Thank you,
Chris




-
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] directory of american dental clinics

2007-08-17 Thread Ash preposition



Aug 6 - Aug 17: With every purchase of our Medical Doctor Database comes 
completely free! a Directory for Dentists, Nursing Homes and Hospitals


Licensed Medical Doctors in the USA 

788,842 in total – 17,400 emails

Medical Doctors in many different specialties

Over a dozen sortable fields

Special Introductory Offer -  $351


*** Recieve the 3 medical Contact Lists below without charge when you buy the 
Medical Doctor List above ***

American Hospital Database
complete contact information for CEO's, CFO's, Directors and more - over 23,000 
listings in total for more than 7,000 hospitals in the USA

American Dentists
A complete Database or dentists and related services (valued at $299)

American Nursing Home List
includes over 31,589 Senior administrators, 11,288 Nursing Directors in over 
14,706 Nursing Homes in the United States. (value: $249)

Email us at: [EMAIL PROTECTED]





put cease in the subject of an email to us if you'd rather not be contacted

-
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] Feature element - Condition nightmare

2007-08-17 Thread Adrian Gantoi
Finally, the light at the end of the tunnel
As I expected, turns out I used the FileSearch incorrectly.
Unfortunatelly, the WiX / MSI docs are misleading - or better said, the MSI 
docs are pretty much almost impossible to use and understand from the first 
read :)).
The fact that FileSearch is presented as a posible child of Property is a bit 
unfortunate...
It has to be a child of DirectorySearch to get expected results.
Here is the code that DOES work as I intended:

Property Id=FOUNDTABCTL32 Value=notfound
  DirectorySearch Id=dirtosearch Path=[SystemFolder]
FileSearch Id=filetosearch Name=tabctl32.ocx/
  /DirectorySearch
/Property
Feature Id=ProductFeature Title=MainFeature Level=1
  Feature Id=FeatureToInstallWhenOCXMissing Display=hidden Level=1
Condition Level=0![CDATA[FOUNDTABCTL32  notfound]]/Condition
ComponentRef Id=ProductComponent/
  /Feature
/Feature



- Original Message 
From: Adrian Gantoi [EMAIL PROTECTED]
To: Alexei [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Sent: Friday, August 17, 2007 9:52:12 AM
Subject: Re: [WiX-users] Feature element - Condition nightmare


No , it still does not work as I intend.
Is it possible to use FileSearch to set a property
used in a Condition for a Feature or I started on the wrong road ?


 
- Original Message 
From: Alexei [EMAIL PROTECTED]
To: wix-users@lists.sourceforge.net
Sent: Thursday, August 16, 2007 2:44:59 PM
Subject: Re: [WiX-users] Feature element - Condition nightmare


Adrian,
I haven't tried this but what I would do is when you declare your Property -
omit the Value attribute.
This way the property will be undefined.
Then when you are checking use something like:

Feature Id=ProductFeature Title=MainFeature Level=1
  Feature Id=FeatureToInstallWhenOCXMissing Display=hidden
Level=1
Condition Level=0[FOUNDTABCTL32]/Condition
ComponentRef Id=ProductComponent/
  /Feature
/Feature

This way when the FileSearch finds something then [FOUNDTABCTL32] will be
defined and the condition will hold, thereby setting the
FeatureToInstallWhenOCXMissing Level=0

Tell me if this helps at all,
Alexei


Adrian Gantoi wrote:
 
 Hi all,
 
 I'm having a problem with correctly specifying the Feature's Condition.
 My goal - make a search of an ocx file, and if the ocx file does not exist
 on the target computer,
 keep a feature selected for installation.
 If the ocx exists, the feature should be automatically deselected.
 I'm currently having doubts if this is possible, since FileSearch should
 return a string...
 My code below:
 
 Property Id=FOUNDTABCTL32 Value=o Secure=yes
   FileSearch Id=FOUNDTABCTL32 Name=tabctl32.ocx/
 /Property
 
 Feature Id=ProductFeature Title=MainFeature Level=1
   Feature Id=FeatureToInstallWhenOCXMissing Display=hidden
 Level=1
 Condition Level=0![CDATA[FOUNDTABCTL32]]/Condition
 ComponentRef Id=ProductComponent/
   /Feature
 /Feature
 
 Am I doing something wrong or this is not possible ?
 
 Thanks for any help,
 Adrian
 

-- 
View this message in context: 
http://www.nabble.com/Feature-element---Condition-nightmare-tf4279047.html#a12179726
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





Moody friends. Drama queens. Your life? Nope! - their life, your story.
Play Sims Stories at Yahoo! Games.


   
Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.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] SQL-Error VS-Error

2007-08-17 Thread Schrieken, Rene
Did you install Votive that comes with the Wix 3.0 binaries?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, August 17, 2007 9:10 AM
To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] SQL-Error  VS-Error

I'm using the version 3.0.2925
In the meantime I got another problem:
As I started the wix-solution in VS2005, I got an error Make sure the
application for the project type (.wixproj) is installed.
I found the following (rather old) posting where a workaround is
described:
http://osdir.com/ml/windows.devel.wix.devel/2006-09/msg00040.html
I tried to 'work around' but it didn't work out.
Any ideas?
Thank's,
Chris

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Mensching
Sent: Donnerstag, 16. August 2007 17:29
To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] SQL-Error

What versoin of the WiX toolset are you using?  There was a bug like
this
in a build a while ago.  Recent builds should be working fine.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, August 16, 2007 7:29 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] SQL-Error

(sorry, forgot the subject before)

Hi all,
I tried to 'candlelight' the sql-example which is on the wix-wiki-page:
http://www.wixwiki.com/images/c/c1/WixSqlDatabaseSample.zip and after
executing 'light' I get following error:

C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27,0):
Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in
section 'Fragment:'.
C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28,0):
Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in
section 'Fragment:'.
Done building project WixSqlDatabaseSample.wixproj -- FAILED.

The thing is the folder 'C:\delivery' doesnt exist! Any ideas?
Thank you,
Chris





-
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 e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be copied, 
disclosed to, retained or used by, any other party. If you are not an intended 
recipient then please promptly delete this e-mail and any attachment and all 
copies and inform the sender. Thank you.

-
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] Creating sub directory

2007-08-17 Thread Rob Hamflett
It's because your components aren't inside the bin directory tag.  You've used 
a closed element by 
declaring Directory . /.  I'm not even sure how that compiles because the 
closing /Directory 
tag doesn't have an opening tag to match against.

You want:
Directory . 
   Component  
 File ... /
 File ... /
   /Component
/Directory

Rob

[EMAIL PROTECTED] wrote:
  
 Hi everyone,
  
 Below is my fragment wxs file and I want to create bin folder there, but 
 it's not working, instead files are being installed in parent directory. 
 What am I missing there or what is the proper way to do this?
  
 ?xml version=1.0?
 Wix xmlns=http://schemas.microsoft.com/wix/2003/01/wi;
   Fragment Id=iAdmin
 DirectoryRef Id=iAdmin
   Directory Id=iAdminBin Name=bin /
  Component Id=iAdminComponent 
 Guid=E7C2C63D-13BC-7AF0-24E1-F9E5FC0789F9
File Id='A.dll' Name='AUL.dll' DiskId='1' 
 src=$(var.BuildBinariesDir)\ /
File Id='B.dll' Name='iAdmCtrl.dll' DiskId='1' 
 src=$(var.BuildBinariesDir)\ /
  /Component
/Directory
 /DirectoryRef
   /Fragment
 /Wix
  
  
 Thanks,
 Steve
 
 
 Play free games, earn tickets, get cool prizes! Join Live Search Club.   
 Join Live Search Club! 
 http://club.live.com/home.aspx?icid=CLUB_wlmailtextlink
 
 
 
 
 -
 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] Running exe from custom action + actions sequence

2007-08-17 Thread Rob Hamflett
Daniel Wilson wrote:
 Hello,
 
 I have a setup project that must run an .exe command-line custom
 action before an installed service is started.
 
 The problem is, the custom action will throw an error when placed in
 install actions sequence before Start Services or Install
 Services.

What error does it throw?

Rob


-
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] Cannot reinstall after a user Restarts their computer during uninstall

2007-08-17 Thread Rob Hamflett
What does 'cannot reinstall' mean?  What actually happens?

Rob

Magus wrote:
 I am getting a bug reported to me and I am really unsure how this is
 happening, and what I can do about it. Anyone else come across this error.


-
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] SQL-Error VS-Error

2007-08-17 Thread Chris
Yes, I installed the  Wix-3.0.2925.0.msi 
http://downloads.sourceforge.net/wix/Wix-3.0.2925.0.msi?modtime=1180101890big_mirror=0
 
and the  ProjectAggregator2-3.0.2925.0.msi 
http://downloads.sourceforge.net/wix/ProjectAggregator2-3.0.2925.0.msi?modtime=1180101856big_mirror=0
 
from 
http://sourceforge.net/project/showfiles.php?group_id=105970package_id=16
I have to admit that I could open the solution the day before and had no 
problems working with it.
I also tried to reinstall it but wasn't successful.

Schrieken, Rene wrote:
 Did you install Votive that comes with the Wix 3.0 binaries?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 [EMAIL PROTECTED]
 Sent: Friday, August 17, 2007 9:10 AM
 To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] SQL-Error  VS-Error

 I'm using the version 3.0.2925
 In the meantime I got another problem:
 As I started the wix-solution in VS2005, I got an error Make sure the
 application for the project type (.wixproj) is installed.
 I found the following (rather old) posting where a workaround is
 described:
 http://osdir.com/ml/windows.devel.wix.devel/2006-09/msg00040.html
 I tried to 'work around' but it didn't work out.
 Any ideas?
 Thank's,
 Chris

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Rob
 Mensching
 Sent: Donnerstag, 16. August 2007 17:29
 To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] SQL-Error

 What versoin of the WiX toolset are you using?  There was a bug like
 this
 in a build a while ago.  Recent builds should be working fine.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 [EMAIL PROTECTED]
 Sent: Thursday, August 16, 2007 7:29 AM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] SQL-Error

 (sorry, forgot the subject before)

 Hi all,
 I tried to 'candlelight' the sql-example which is on the wix-wiki-page:
 http://www.wixwiki.com/images/c/c1/WixSqlDatabaseSample.zip and after
 executing 'light' I get following error:

 C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27,0):
 Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in
 section 'Fragment:'.
 C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28,0):
 Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in
 section 'Fragment:'.
 Done building project WixSqlDatabaseSample.wixproj -- FAILED.

 The thing is the folder 'C:\delivery' doesnt exist! Any ideas?
 Thank you,
 Chris




 
 -
 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 e-mail and any attachment is for authorised use by the intended 
 recipient(s) only. It may contain proprietary material, confidential 
 information and/or be subject to legal privilege. It should not be copied, 
 disclosed to, retained or used by, any other party. If you are not an 
 intended recipient then please promptly delete this e-mail and any attachment 
 and all copies and inform the sender. Thank you.

   


-
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] vista custom actions

2007-08-17 Thread Alexander Gnauck
Rob Hamflett schrieb:
 If you want them to be elevated you want Impersonate=no.  As for when they 
 are executed, that 
 depends on when you scheduled them, but a deferred custom action is supposed 
 to be scheduled 
 somewhere in the InstallExecuteSequence between InstallInitialize and 
 InstallFinalize.

The MSDN sais:
Note that only deferred execution custom actions can use the 
msidbCustomActionTypeNoImpersonate attribute. For more information see 
Custom Action In-Script Execution Options

this means i can elevate permissions only if I execute the actions deferred?
Is there no way to to elevate permissions for actions that have to 
execute immediate?

Elevated means i have the permissions of the LocalSystem account. Still 
not enough permissions to access the network etc

Are there any workarounds or tricks to execute custom actions with full 
admin permissions?
We tried a manifest in the native ca-dll, but the MSI installer ignores 
the manifest.

Thanks,
Alex





-
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] SQL-Error VS-Error

2007-08-17 Thread Chris
Actually I had the Votive 2.0 on the system and then installed the 
Votive 3.0!


Yes, I installed the  Wix-3.0.2925.0.msi 
http://downloads.sourceforge.net/wix/Wix-3.0.2925.0.msi?modtime=1180101890big_mirror=0
 
http://downloads.sourceforge.net/wix/Wix-3.0.2925.0.msi?modtime=1180101890big_mirror=0

and the  ProjectAggregator2-3.0.2925.0.msi 
http://downloads.sourceforge.net/wix/ProjectAggregator2-3.0.2925.0.msi?modtime=1180101856big_mirror=0
 
http://downloads.sourceforge.net/wix/ProjectAggregator2-3.0.2925.0.msi?modtime=1180101856big_mirror=0

from

http://sourceforge.net/project/showfiles.php?group_id=105970package_id=16 
http://sourceforge.net/project/showfiles.php?group_id=105970package_id=16

I have to admit that I could open the solution the day before and had no 
problems working with it.

I also tried to reinstall it but wasn't successful.

 

Schrieken, Rene wrote:

  Did you install Votive that comes with the Wix 3.0 binaries?

  

  -Original Message-

  From: [EMAIL PROTECTED]

  [mailto:[EMAIL PROTECTED] On Behalf Of

  [EMAIL PROTECTED]

  Sent: Friday, August 17, 2007 9:10 AM

  To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net

  Subject: Re: [WiX-users] SQL-Error  VS-Error

  

  I'm using the version 3.0.2925

  In the meantime I got another problem:

  As I started the wix-solution in VS2005, I got an error Make sure the

  application for the project type (.wixproj) is installed.

  I found the following (rather old) posting where a workaround is

  described:

  http://osdir.com/ml/windows.devel.wix.devel/2006-09/msg00040.html

  I tried to 'work around' but it didn't work out.

  Any ideas?

  Thank's,

  Chris

  

  -Original Message-

  From: [EMAIL PROTECTED]

  [mailto:[EMAIL PROTECTED] On Behalf Of Rob

  Mensching

  Sent: Donnerstag, 16. August 2007 17:29

  To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net

  Subject: Re: [WiX-users] SQL-Error

  

  What versoin of the WiX toolset are you using?  There was a bug like

  this in a build a while ago.  Recent builds should be working fine.

  

  -Original Message-

  From: [EMAIL PROTECTED]

  [mailto:[EMAIL PROTECTED] On Behalf Of

  [EMAIL PROTECTED]

  Sent: Thursday, August 16, 2007 7:29 AM

  To: wix-users@lists.sourceforge.net

  Subject: [WiX-users] SQL-Error

  

  (sorry, forgot the subject before)

  

  Hi all,

  I tried to 'candlelight' the sql-example which is on the wix-wiki-page:

  http://www.wixwiki.com/images/c/c1/WixSqlDatabaseSample.zip and after

  executing 'light' I get following error:

  

  C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27,0):

  Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in

  section 'Fragment:'.

  C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28,0):

  Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule' in

  section 'Fragment:'.

  Done building project WixSqlDatabaseSample.wixproj -- FAILED.

  

  The thing is the folder 'C:\delivery' doesnt exist! Any ideas?

  Thank you,

  Chris

  

  

  

  

  --

  --

  -

  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 mailto:WiX-users@lists.sourceforge.net

  https://lists.sourceforge.net/lists/listinfo/wix-users

  

  

  This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be 
copied, disclosed to, retained or used by, any other party. If you are 
not an intended recipient then please promptly delete this e-mail and 
any attachment and all copies and inform the sender. Thank you.

  

   

 

 

-

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

Re: [WiX-users] vista custom actions

2007-08-17 Thread Rob Hamflett
Alexander Gnauck wrote:
 Rob Hamflett schrieb:
 If you want them to be elevated you want Impersonate=no.  As for when they 
 are executed, that 
 depends on when you scheduled them, but a deferred custom action is supposed 
 to be scheduled 
 somewhere in the InstallExecuteSequence between InstallInitialize and 
 InstallFinalize.
 
 The MSDN sais:
 Note that only deferred execution custom actions can use the 
 msidbCustomActionTypeNoImpersonate attribute. For more information see 
 Custom Action In-Script Execution Options
 
 this means i can elevate permissions only if I execute the actions deferred?
 Is there no way to to elevate permissions for actions that have to 
 execute immediate?

I think you'd have to run the whole install elevated.  Actually, if it was an 
exe with requiresAdmin 
specified in the manifest, that might get elevated.  If you need a DLL though I 
don't think that 
will work.  I looked at this, and although you can specify requiresAdmin in a 
DLL manifest, you 
can't elevate a DLL when you load it.
 
 Elevated means i have the permissions of the LocalSystem account. Still 
 not enough permissions to access the network etc

Really?  The elevated section of InstallExecuteSequence should be all powerful, 
given that it's 
making system changes.  What error are you getting back?  Are you sure you're 
not trying to access 
the network via a mapped drive?  Those are only visible to whichever user 
created them.
 
 Are there any workarounds or tricks to execute custom actions with full 
 admin permissions?
 We tried a manifest in the native ca-dll, but the MSI installer ignores 
 the manifest.

Unless it deferred I think you'll have to run the whole thing as elevated.

Rob

 
 Thanks,
 Alex
 
 
 
 
 
 -
 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/


-
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] Dynamically grab directory value

2007-08-17 Thread Gareth at Serif

You can also avoid making the directory into a global property by using
[$component_name] to evaluate the full path to where a component is
installed to in the same way that Rob suggests [#field] fo evaluate the
location of a file.

Cheers,
Gareth




Rob Hamflett wrote:
 
 Rob's suggestion is if you want to get info about the system so you can
 change properties in your 
 installation at runtime.  It sounds though, like you want to get the
 information about the current 
 state of the installer.  Directory IDs can be treated the same as
 properties, so you can get the 
 full path of a folder using [FOLDER_ID].  You will probably need to make
 them upper case so they get 
 passed to the server side properly.  If you want the full path to a file
 it's [#fileid].
 
 Rob
 

-- 
View this message in context: 
http://www.nabble.com/Dynamically-grab-directory-value-tf4280152.html#a12197221
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] how to create language transform in wix? Is it possible to do this in wix?

2007-08-17 Thread Stefan Pavlik
Hi all...

AFAIK the language transform cannot be created using WiX.
You can create several MSI packages (one for each language) and use
another tool (msitran.exe) to compare the packages and create the
language transformation.

Msitran.exe is part of SDK.

Regards

Stefan

Gareth at Serif wrote:
 Yes
 
 
 shambhu kumar wrote:


 

-- 
Stefan Pavlik | [EMAIL PROTECTED]
Whitestein Technologies s.r.o. | www.whitestein.com
Panenska 28 | 811 03 Bratislava | Slovak Republic
Main +421 2 5443-5502 | Direct +421 2 5930-0735

-
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] ASP.NET 2.0 property setting in configuration of IIS webApplication

2007-08-17 Thread David Stindl
Hallo all,
I have the problem to setup IIS settings, that app. is ASP .NET 2.0
application, during installation of webApplication. Below is the code
sample. Any idea hot to set it?
Thanks a lot...
  David.


/Directory

  !-- Definice webove sluzby: --
  Component Id='WebVirtualDirComponent'
Guid='{C14D65E1-20C3-414c-8F23-5AD87AF3FA66}'

WebVirtualDir Id='WebVirtualDir' Alias='CMOnline'
Directory='INSTALLDIR' WebSite='DefaultWebSite'
DirProperties='WebProp1'
  WebApplication Id='CMOnlineApplication' Name='CMOnline
Web Site' ClientDebugging='yes'/
/WebVirtualDir

  /Component

/Directory
  /Directory
/Directory

!-- Web virtual dir properties --
WebDirProperties Id=WebProp1 Read=yes Write=yes
Script=yes Execute=yes
  AnonymousAccess=yes LogVisits=yes Index=yes
  DefaultDocuments=Default.aspx/

WebSite Id='DefaultWebSite' Description='Default Web Site'
  WebAddress Id='AllUnassigned' Port='80' /
/WebSite

  /Module
/Wix
-

-
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] Kill Process

2007-08-17 Thread Simon Topley
Sadly not a lot of response. This is my best stab at it so far:



Binary Id=taskkill src='C:\Windows\system32\taskkill.exe'/

CustomAction Id='KillWSQ' BinaryKey=taskkill ExeCommand='/im
wsq95.exe /t /f' Return=asyncNoWait /CustomAction
InstallExecuteSequence
Custom Action='KillWSQ'
After=InstallInitializeInstalled/Custom
/InstallExecuteSequence


If nothing cleaner comes along then I'll have to put a switch into the
exe that will force it to kill itself and any other copies of itself
currently running.

I'm surprised that the uninstall doesn't fail and only give this in the
log (The file is removed dispite it being in use! And the process is
still running with the real path to the exe that is removed. It has a
failed to load file error in the sysinternals process explorer:

Info 1603. The file C:\Program Files\FloodWorks85\mfc71.dll is being
held in use by the following process: Name: wsq95, Id: 180, Window
Title: '(not determined yet)'. Close that application and retry.
Info 1603. The file C:\Program Files\FloodWorks85\msvcp71.dll is being
held in use by the following process: Name: wsq95, Id: 180, Window
Title: '(not determined yet)'. Close that application and retry.

...

MSI (c) (70:54) [11:28:59:723]: File In Use: -wsq95- Window could not be
found. Process ID: 180

...

MSI (c) (70:54) [11:28:59:723]: No window with title could be found for
FilesInUse
MSI (s) (F8:9C) [11:28:59:723]: Doing action: InstallInitialize

...


FileRemove(,FileName=wsq95.exe,,ComponentId={8A562E67-7784-463A-85CA-B48
02C100633})
MSI (s) (F8:9C) [11:29:09:426]: Verifying accessibility of file:
wsq95.exe
The information contained in this e-mail is likely to be confidential and
may be legally privileged. It is intended only for the addressee. If you
have received this message in error please notify the sender immediately at
the above address. The disclosure, copying or distribution of this message
or its contents without the prior approval of Wallingford Software is
strictly prohibited. Wallingford Software is not liable for
unauthorised disclosures nor for subsequent actions or omissions in reliance
upon them.

Registered in the UK, company no: 02288719
Wallingford Software Limited, Howbery Park, Wallingford, Oxfordshire, OX10 8BA

-
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] AppSearch nesting

2007-08-17 Thread Gareth at Serif

Thanks for your feedback Phil.  you're right though, I did start with the
CLSID in order to find out which of the many file names could be installed
is (or isn't)... everytime there's a new version of flash they rename the
ocx file (flash8.ocx, flash8a.ocx, flash8b.ocx, etc.).

Is there anyway you can perform the FileSearch with wildcards?  Something
like flash*.ocx.

Cheers,
Gareth




Wilson, Phil wrote:
 
 It looks like you're mixing up FileSearch/DirectorySearch and
 RegistrySearch. 
 
 An MSI AppSearch for a registry item has no version limitations - it
 returns the path to the file. That's what you've got. 
 
 A Directory/File search can limit version ranges, but you start with a
 DirectorySearch path, something like (no angle brackets):
 
 Property ID = FLASH
 DirectorySearch Path=[SystemFolder]Macromed\Flash
 Depth, Id etc 
 FileSearch Name =flash.ocx MinVersion=8.0.24.0 
 
 And FLASH is set if it's found with those version restrictions. There is
 no nesting of AppSearch. 
 
 Something you'll need to watch out for is that they rename the OCXs,
 which is probably why you started with a CLSID search. So you can do
 several FileSearches in that folder for flash.ocx, flash9.ocx etc and
 use any of the resulting properties for success, or pass that path
 you've got into a custom action to go get the version.  I don't know if
 WiX has any additional search helpers for this, but the MSI AppSearch on
 the registry won't do a version check for you. 
 
 Phil Wilson 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Gareth at
 Serif
 Sent: Tuesday, August 14, 2007 4:29 AM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] AppSearch nesting
 
 
 Hi,
 
 I am trying to use AppSearch to determin if the installed version of
 FlashPlayer is sufficient (greater than 8.0.24.0) and have nested some
 searches as follows:
 Property Id=FILEVERSIONTEST Secure=yes
   RegistrySearch Id=FileVersionTestA Root=HKCR
 Key=CLSID\{D27CDB6E-AE6D-11cf-96B8-44455354}\InprocServer32
 Type=raw
   FileSearch Id=FileVersionTestB
 LongName=[FileVersionTestA]
 MinVersion=8.0.24.0 /
   /RegistrySearch
 /Property
 
 The resulting log file from the install says:
 AppSearch: Property: FILEVERSIONTEST, Signature: FileVersionTestB
 MSI (c) (7C:A0) [10:54:29:026]: PROPERTY CHANGE: Adding FILEVERSIONTEST
 property. Its value is 'C:\WINDOWS\system32\macromed\flash\flash.ocx'.
 
 The version of FlashPlayer this sytem has is 6.0.79.0.
 
 As such, I'd expect the AppSearch to return false, which it kind of does
 in
 maintaining the path found in the registry, but when I tweaked the MSI
 to
 test for version 1.0.0.0 the log file was identicle.  I suspect the
 failing
 is in the declaration of my 'LongName' attribute for the FileSearch, but
 I
 can't get my head round how this behavious should work.
 
 Any pointers would be great,
 Gareth
 
 -- 
 View this message in context:
 http://www.nabble.com/AppSearch-nesting-tf425.html#a12142727
 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
 
 

-- 
View this message in context: 
http://www.nabble.com/AppSearch-nesting-tf425.html#a12197422
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] Detecting windows versions while installing

2007-08-17 Thread Gareth at Serif

I would suggest that you add an event to the 'Next' button on one of your
early dialogs (perhaps even the Welcome dialog) and display the info on a
spawned dialog...

Publish Event=SpawnDialog
Value=VistaWarningWindowsNTgt;=600/Publish

Then define your 'Vista Warning' with the dimensions and elements you
require for the warning and the following event to the 'OK' button to close
it:

Publish Event=EndDialog Value=Return1/Publish

Best of luck,
Gareth





Anidil wrote:
 
 I wanna check for the windows version and give a warning message if the OS
 is non vista and continue with the installation..
 I tried using the VersionNT=600 property inside the condition.but it
 terminates the installation upon run on non vista OS.How best can i code
 the installer to just display a warning message in this case?
 
 Thanks
 Andy
 

-- 
View this message in context: 
http://www.nabble.com/Detecting-windows-versions-while-installing-tf4280199.html#a12197338
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] how to create language transform in wix? Is it possible to do this in wix?

2007-08-17 Thread Gareth at Serif

Yes


shambhu kumar wrote:
 
 
 

-- 
View this message in context: 
http://www.nabble.com/how-to-create-language-transform-in-wix--Is-it-possible-to-do-this-in-wix--tf4277987.html#a12197382
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] SQL-Error VS-Error

2007-08-17 Thread Schrieken, Rene
My guess is: your *.wixproj was created with Votive 2.0?
Votive 2.0 and 3.0 project file formats are not compatible.

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 17, 2007 11:13 AM
To: Schrieken, Rene
Cc: wix-users@lists.sourceforge.net; [EMAIL PROTECTED]
Subject: Re: [WiX-users] SQL-Error  VS-Error

Actually I had the Votive 2.0 on the system and then installed the 
Votive 3.0!


Yes, I installed the  Wix-3.0.2925.0.msi 
http://downloads.sourceforge.net/wix/Wix-3.0.2925.0.msi?modtime=1180101
890big_mirror=0 
http://downloads.sourceforge.net/wix/Wix-3.0.2925.0.msi?modtime=1180101
890big_mirror=0

and the  ProjectAggregator2-3.0.2925.0.msi 
http://downloads.sourceforge.net/wix/ProjectAggregator2-3.0.2925.0.msi?
modtime=1180101856big_mirror=0 
http://downloads.sourceforge.net/wix/ProjectAggregator2-3.0.2925.0.msi?
modtime=1180101856big_mirror=0

from

http://sourceforge.net/project/showfiles.php?group_id=105970package_id=
16 
http://sourceforge.net/project/showfiles.php?group_id=105970package_id
=16

I have to admit that I could open the solution the day before and had no

problems working with it.

I also tried to reinstall it but wasn't successful.

 

Schrieken, Rene wrote:

  Did you install Votive that comes with the Wix 3.0 binaries?

  

  -Original Message-

  From: [EMAIL PROTECTED]

  [mailto:[EMAIL PROTECTED] On Behalf Of

  [EMAIL PROTECTED]

  Sent: Friday, August 17, 2007 9:10 AM

  To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net

  Subject: Re: [WiX-users] SQL-Error  VS-Error

  

  I'm using the version 3.0.2925

  In the meantime I got another problem:

  As I started the wix-solution in VS2005, I got an error Make sure
the

  application for the project type (.wixproj) is installed.

  I found the following (rather old) posting where a workaround is

  described:

  http://osdir.com/ml/windows.devel.wix.devel/2006-09/msg00040.html

  I tried to 'work around' but it didn't work out.

  Any ideas?

  Thank's,

  Chris

  

  -Original Message-

  From: [EMAIL PROTECTED]

  [mailto:[EMAIL PROTECTED] On Behalf Of Rob

  Mensching

  Sent: Donnerstag, 16. August 2007 17:29

  To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net

  Subject: Re: [WiX-users] SQL-Error

  

  What versoin of the WiX toolset are you using?  There was a bug like

  this in a build a while ago.  Recent builds should be working fine.

  

  -Original Message-

  From: [EMAIL PROTECTED]

  [mailto:[EMAIL PROTECTED] On Behalf Of

  [EMAIL PROTECTED]

  Sent: Thursday, August 16, 2007 7:29 AM

  To: wix-users@lists.sourceforge.net

  Subject: [WiX-users] SQL-Error

  

  (sorry, forgot the subject before)

  

  Hi all,

  I tried to 'candlelight' the sql-example which is on the
wix-wiki-page:

  http://www.wixwiki.com/images/c/c1/WixSqlDatabaseSample.zip and after

  executing 'light' I get following error:

  

 
C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27,0):

  Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule'
in

  section 'Fragment:'.

 
C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28,0):

  Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule'
in

  section 'Fragment:'.

  Done building project WixSqlDatabaseSample.wixproj -- FAILED.

  

  The thing is the folder 'C:\delivery' doesnt exist! Any ideas?

  Thank you,

  Chris

  

  

  

  

 
--

  --

  -

  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
mailto:WiX-users@lists.sourceforge.net

  https://lists.sourceforge.net/lists/listinfo/wix-users

  

  

  This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be 
copied, disclosed to, retained or used by, any other party. If you are 
not an intended recipient then please promptly delete this e-mail and 
any attachment and all copies and inform the sender. Thank you.

  

   

 

 


-

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 mailto:WiX-users@lists.sourceforge.net


[WiX-users] uninstalling dlls, again

2007-08-17 Thread Alexei

Well I posted about this a while ago, but I've still not found a solution so
I figured I'd try again.

What happens is that when I attempt to uninstall the application the three
DLLs that are installed with it are left on the system.
The installation fragments for these DLLs were created with tallow -s, and
the local references in there have been changed. All three are in the
sytem32 folder. (and yes I KNOW I shouldn't put them there but that's
outwith my control)

What I DO get in the verbose log is:
MSI (s) (80:B4) [13:06:01:687]: Component: readerComp; Installed: Local;  
Request: Absent;   Action: Null
MSI (s) (80:B4) [13:06:01:687]: Component: writerComp; Installed: Local;  
Request: Absent;   Action: Null
MSI (s) (80:B4) [13:06:01:687]: Component: serverComp; Installed: Local;  
Request: Absent;   Action: Null
MSI (s) (80:B4) [13:06:01:687]: Component: __LanMonExeComp65; Installed:
Null;   Request: Absent;   Action: Absent
MSI (s) (80:B4) [13:06:01:687]: Component: __readerComp65; Installed: Null;  
Request: Absent;   Action: Null
MSI (s) (80:B4) [13:06:01:687]: Component: __serverComp65; Installed: Null;  
Request: Absent;   Action: Null
MSI (s) (80:B4) [13:06:01:687]: Component: __writerComp65; Installed: Null;  
Request: Absent;   Action: Null

So it seems that they're not being uninstalled for some reason. What the
hell are reader\writer\serverComp65 ?

I don't get anything which says stuff like Disallowing uninstallation of
component...since another client exists

Even using regsvr32 (yes I shouldn't use this either - I know) to reg/unreg
the DLLs still leaves them behind on uninstall.

What can I do?
-- 
View this message in context: 
http://www.nabble.com/uninstalling-dlls%2C-again-tf4285306.html#a12198392
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] SQL-Error VS-Error

2007-08-17 Thread Uni
Thank you for the hint, but I dont think so, because I get the same 
error when I want to create a new wix-project.
Any other ideas?

Schrieken, Rene schrieb:
 My guess is: your *.wixproj was created with Votive 2.0?
 Votive 2.0 and 3.0 project file formats are not compatible.

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Friday, August 17, 2007 11:13 AM
 To: Schrieken, Rene
 Cc: wix-users@lists.sourceforge.net; [EMAIL PROTECTED]
 Subject: Re: [WiX-users] SQL-Error  VS-Error

 Actually I had the Votive 2.0 on the system and then installed the 
 Votive 3.0!
 

 Yes, I installed the  Wix-3.0.2925.0.msi 
 http://downloads.sourceforge.net/wix/Wix-3.0.2925.0.msi?modtime=1180101
 890big_mirror=0 
 http://downloads.sourceforge.net/wix/Wix-3.0.2925.0.msi?modtime=1180101
 890big_mirror=0

 and the  ProjectAggregator2-3.0.2925.0.msi 
 http://downloads.sourceforge.net/wix/ProjectAggregator2-3.0.2925.0.msi?
 modtime=1180101856big_mirror=0 
 http://downloads.sourceforge.net/wix/ProjectAggregator2-3.0.2925.0.msi?
 modtime=1180101856big_mirror=0

 from

 http://sourceforge.net/project/showfiles.php?group_id=105970package_id=
 16 
 http://sourceforge.net/project/showfiles.php?group_id=105970package_id
 =16

 I have to admit that I could open the solution the day before and had no

 problems working with it.

 I also tried to reinstall it but wasn't successful.

  

 Schrieken, Rene wrote:

   Did you install Votive that comes with the Wix 3.0 binaries?

   

   -Original Message-

   From: [EMAIL PROTECTED]

   [mailto:[EMAIL PROTECTED] On Behalf Of

   [EMAIL PROTECTED]

   Sent: Friday, August 17, 2007 9:10 AM

   To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net

   Subject: Re: [WiX-users] SQL-Error  VS-Error

   

   I'm using the version 3.0.2925

   In the meantime I got another problem:

   As I started the wix-solution in VS2005, I got an error Make sure
 the

   application for the project type (.wixproj) is installed.

   I found the following (rather old) posting where a workaround is

   described:

   http://osdir.com/ml/windows.devel.wix.devel/2006-09/msg00040.html

   I tried to 'work around' but it didn't work out.

   Any ideas?

   Thank's,

   Chris

   

   -Original Message-

   From: [EMAIL PROTECTED]

   [mailto:[EMAIL PROTECTED] On Behalf Of Rob

   Mensching

   Sent: Donnerstag, 16. August 2007 17:29

   To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net

   Subject: Re: [WiX-users] SQL-Error

   

   What versoin of the WiX toolset are you using?  There was a bug like

   this in a build a while ago.  Recent builds should be working fine.

   

   -Original Message-

   From: [EMAIL PROTECTED]

   [mailto:[EMAIL PROTECTED] On Behalf Of

   [EMAIL PROTECTED]

   Sent: Thursday, August 16, 2007 7:29 AM

   To: wix-users@lists.sourceforge.net

   Subject: [WiX-users] SQL-Error

   

   (sorry, forgot the subject before)

   

   Hi all,

   I tried to 'candlelight' the sql-example which is on the
 wix-wiki-page:

   http://www.wixwiki.com/images/c/c1/WixSqlDatabaseSample.zip and after

   executing 'light' I get following error:

   

  
 C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27,0):

   Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule'
 in

   section 'Fragment:'.

  
 C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28,0):

   Error LGHT0094: Unresolved reference to symbol 'Binary:ScaSchedule'
 in

   section 'Fragment:'.

   Done building project WixSqlDatabaseSample.wixproj -- FAILED.

   

   The thing is the folder 'C:\delivery' doesnt exist! Any ideas?

   Thank you,

   Chris

   

   

   

   

  
 --

   --

   -

   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
 mailto:WiX-users@lists.sourceforge.net

   https://lists.sourceforge.net/lists/listinfo/wix-users

   

   

   This e-mail and any attachment is for authorised use by the intended 
 recipient(s) only. It may contain proprietary material, confidential 
 information and/or be subject to legal privilege. It should not be 
 copied, disclosed to, retained or used by, any other party. If you are 
 not an intended recipient then please promptly delete this e-mail and 
 any attachment and all copies and inform the sender. Thank you.

   



  

  

 
 -

 This SF.net email is sponsored by: Splunk Inc.

 Still grepping through log files to find problems?  Stop.

 Now Search log 

[WiX-users] Using Wix 2.0.5325.0 and getting error with nested sqldatabase elements

2007-08-17 Thread Gurpal Hundal
I'm getting the following errors with nested sqldatabase elements - so the 
structure would be like

error CNDL0080 : When nested under a component, the SqlDatabase element must 
have one of the following attributes specified: CreateOnInstall, 
CreateOnUninstall, DropOnInstall or DropOnUninstall.
error CNDL0080 : When nested under a component, the SqlDatabase element must 
have one of the following attributes specified: CreateOnInstall, 
CreateOnUninstall, DropOnInstall or DropOnUninstall.
 error CNDL0080 : When nested under a component, the SqlDatabase element must 
have one of the following attributes specified: CreateOnInstall, 
CreateOnUninstall, DropOnInstall or DropOnUninstall.

component
sqldatabase
sqlscript /
/sqldatabase
sqldatabase
sqlscript/
/sqldatabase
/component

I've added all the attributes and still get the same error message, help!  
Thanks!

Gurpal S. Hundal
-
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] modify hosts file

2007-08-17 Thread ersm6
Hi list,
 
I need to append a line in hosts file (like 127.0.0.1mydomain.com) 
through wxs file. Someone please suggest me ( or some useful links) how it can 
be done.
 
Thanks.
_
With Windows Live Hotmail, you can personalize your inbox with your favorite 
color.
www.windowslive-hotmail.com/learnmore/personalize.html?locale=en-usocid=TXT_TAGLM_HMWL_reten_addcolor_0607-
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] Creating WixUI_is-is.wxl

2007-08-17 Thread Bob Arnson
Oliver Schneider wrote:
 thanks for the reply, will do. To whom would submit the final version?
   

The easiest way is to submit a feature request at 
http://sourceforge.net/tracker/?group_id=105970atid=642717 so you can 
attach the change. You'll also need an assignment agreement; see 
http://blogs.msdn.com/robmen/archive/2004/04/14/112970.aspx for details.

-- 
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] LGHT0102 errors on localized builds

2007-08-17 Thread Bob Arnson
Schuett, Michael wrote:
 I'm having problems with dozens of LGHT0102 errors when I perform a localized 
 build. (I'm using 3.0.2925.0 and VS2005.) The project builds fine when the 
 culture is en-us, but fails when I use a different culture. I've tried de-de, 
 es-es, fr-fr and it-it. The LGHT0102 errors are all on localization variable 
 that WiX should provide.
   

Which loc IDs? For now, only the WixUI dialog library has localized 
strings; the custom action errors do not.

-- 
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] Performing both New Installs and Upgrades with aCommon MSI

2007-08-17 Thread Bob Arnson

Wilson, Phil wrote:


I don't like ALLUSERS=2 because it's indeterminate depending on the 
user privileges. A major upgrade won't upgrade unless the incoming 
product matches the installed product's ALLUSERS value.




Agreed -- major upgrades shouldn't use ALLUSERS=2. For that matter, most 
products shouldn't use ALLUSERS=2.


I believe RemoveExistingProducts is best sequenced just after 
InstallInitialize for robustness.




I generally agree, though in this case it was specifically to prevent 
the assets behind components from being removed if they don't have 
explicit upgrade support.


Matthew, logging will indicate how MSI handled the upgrade and show if 
there was an error or ALLUSERS mismatch.


--
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] Running exe from custom action + actions sequence

2007-08-17 Thread Bob Arnson
Daniel Wilson wrote:
 The problem is, the custom action will throw an error when placed in
 install actions sequence before Start Services or Install
 Services.
   

It sounds like the CA isn't deferred. If a CA has a dependency on the 
files being installed, it must be deferred so it executes after the 
files are actually copied to the machine.

-- 
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] how to create language transform in wix? Is it possible to do this in wix?

2007-08-17 Thread Bob Arnson
Stefan Pavlik wrote:
 AFAIK the language transform cannot be created using WiX.
 You can create several MSI packages (one for each language) and use
 another tool (msitran.exe) to compare the packages and create the
 language transformation.
   

That's what the Torch tool does (part of the new patch-building tools in 
WiX v3).

-- 
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] Kill process

2007-08-17 Thread Bob Arnson
Simon Topley wrote:
 I can't find anything in the help about process control. There is an
 simple exe file that users are frequently running during uninstall,
 while the file is eventually removed it means that programfiles folder
 is left behind and the icon is still in the system troy. Is there a
 simple way to detect processes and warn users, or just kill the process?
 I have been playing with using a custom action to call taskkill but it
 isn't exactly tidy..
   

Check out the util:CloseApplication element.

-- 
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] Pubca Schema for v3

2007-08-17 Thread Bob Arnson

Brian Poploskie wrote:


Does the Pubca schema exist in any for for v3?  I'm looking for the 
MessageQueue and MQPermission elements.




The assemblies ship in the v3 .zip files. There's an open bug that they 
don't ship in the v3 .msi.


--
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] modify hosts file

2007-08-17 Thread Mark Line
could use a custom action? i wrote a dll in vs2005 that took parm's from the 
installer and changed a file on the local machine you could pass the 
%systemroot% var and change the file

i can send you my project if you want a starting point 
  - Original Message - 
  From: [EMAIL PROTECTED] 
  To: wix-users@lists.sourceforge.net 
  Sent: Friday, August 17, 2007 3:50 PM
  Subject: [WiX-users] modify hosts file


  Hi list,
   
  I need to append a line in hosts file (like 127.0.0.1mydomain.com) 
through wxs file. Someone please suggest me ( or some useful links) how it can 
be done.
   
  Thanks.


--
  Make every IM count. Download Windows Live Messenger and join the i'm 
Initiative now. It's free.   Make it count! 


--


  -
  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] modify hosts file

2007-08-17 Thread Christopher Painter
MSI has INI and Registry configuration support and through various vendor 
add-ons it also has XML configuration support.   Regex support would be very 
useful also for situations like this rather then everyone rolling their own 
CA's.
  
Mark Line [EMAIL PROTECTED] wrote:
P {   PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 
0px; PADDING-TOP: 0px  }  BODY {   FONT-SIZE: 10pt; FONT-FAMILY: Tahoma  }  
  could use a custom action? i wrote a dll in vs2005 that took parm's from the 
installer and changed a file on the local machine you could pass the 
%systemroot% var and change the file
   
  i can send you my project if you want a starting point 
- Original Message - 
  From: [EMAIL PROTECTED] 
  To: wix-users@lists.sourceforge.net 
  Sent: Friday, August 17, 2007 3:50 PM
  Subject: [WiX-users] modify hosts file
  

Hi list,
 
I need to append a line in hosts file (like 127.0.0.1mydomain.com) 
through wxs file. Someone please suggest me ( or some useful links) how it can 
be done.
 
Thanks.

  
-
  Make every IM count. Download Windows Live Messenger and join the i'm 
Initiative now. It's free.   Make it count! 
-

-
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


   
-
Luggage? GPS? Comic books? 
Check out fitting  gifts for grads at Yahoo! Search.-
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] A bug in the ConfigureSmb?

2007-08-17 Thread Гусев Иван
Hello all,

it seems that I found a bug in the ConfigureSmb custom action (an action
which manages file shares). My situation is the following:

 

1.   Version 1 of my application creates a file share.

2.   Version 2 of my application is a major upgrade to version 1. It
removes previous version (RemoveExistingProducts is scheduled right after
InstallInitialize) and then installs itself.

 

After major upgrade is done (it seems with no errors), the file share no
longer exists. The folder still present, but it's not shared.

 

I wrote 2 test wix projects to help you reproduce my situation (see
attachement).

Last point: I use WiX 5325 and observe this bug both under Windows Server
2003 and Windows MCE.

 

Ivan Gusev

P. S. My WXS files are listen below:

 

--VERSION1.WXS--

?xml version=1.0 encoding=UTF-8?

Wix xmlns=http://schemas.microsoft.com/wix/2003/01/wi;

  Product Id=BE490661-4E3A-4297-928E-94A7D9FCF5AB Name=Your Product
Language=1033 Version=1.0.0.0 Manufacturer=Your Company
UpgradeCode=80EF85B0-4728-49c1-9BEC-1A9E9226BFB4

Package Id=----
Description=Description of your product Comments=This will appear in the
file summary stream. InstallerVersion=200 Compressed=yes /

 

Media Id=1 Cabinet=Product.cab EmbedCab=yes /



Directory Id=TARGETDIR Name=SourceDir

  Directory Id=ProgramFilesFolder

Directory Id=INSTALLLOCATION Name=MyAppDir LongName=My
Application Directory

 

  Directory Id=Transfer Name=Transfer

Component Id=CCacheFolder
Guid=1484290C-D866-4e41-8F2F-79EFF1C8A671 

  User Id=myUserId CreateUser=yes FailIfExists=no
Name=myUser Password=myPassword PasswordNeverExpires=yes/

  CreateFolder/



  FileShare Id=TransferShare Name=TransferShare
Description=Some description.

Permission ChangePermission=yes Read=yes Delete=yes
User=myUserId/

  /FileShare

/Component

  /Directory

  

/Directory

  /Directory

/Directory

Feature Id=ProductFeature Title=Feature Title Level=1

  ComponentRef Id=CCacheFolder /

/Feature

  /Product

/Wix

 

--VERSION2.WXS

?xml version=1.0 encoding=UTF-8?

Wix xmlns=http://schemas.microsoft.com/wix/2003/01/wi;

Product Id=40C69626-4DD4-45d2-8891-95F4CCC86736 Name=Your Product
Language=1033 Version=1.1.0.0 Manufacturer=Your Company
UpgradeCode=80EF85B0-4728-49c1-9BEC-1A9E9226BFB4

Package Id=----
Description=Description of your product Comments=This will appear in the
file summary stream. InstallerVersion=200 Compressed=yes /

 

Media Id=1 Cabinet=Product.cab EmbedCab=yes /

 

Upgrade Id=80EF85B0-4728-49c1-9BEC-1A9E9226BFB4

UpgradeVersion Minimum=1.0.0 Maximum=1.0.0

IncludeMinimum=yes IncludeMaximum=yes
Property=VER_1_0_FOUND/

/Upgrade

  

Directory Id=TARGETDIR Name=SourceDir

Directory Id=ProgramFilesFolder

Directory Id=INSTALLLOCATION Name=MyAppDir LongName=My
Application Directory

  

Directory Id=Transfer Name=Transfer

   Component Id=CCacheFolder
Guid=1484290C-D866-4e41-8F2F-79EFF1C8A671 

User Id=myUserId CreateUser=yes
FailIfExists=no Name=myUser Password=myPassword
PasswordNeverExpires=yes/

CreateFolder/



FileShare Id=TransferShare
Name=TransferShare Description=Some description.

  Permission ChangePermission=yes Read=yes
Delete=yes User=myUserId/

/FileShare

/Component

/Directory

   

/Directory

/Directory

/Directory

 

Feature Id=ProductFeatureImporter Title=Feature Title
Level=1

ComponentRef Id=CCacheFolder /

/Feature

 

InstallExecuteSequence

FindRelatedProducts/

RemoveExistingProducts After=InstallInitialize/

/InstallExecuteSequence

/Product

/Wix

 

 

-
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] Pubca Schema for v3

2007-08-17 Thread Brian Poploskie
Bob,

 

Which library do I need to link for that?  None of the names have Pubca
in them.  I'm looking in the wix-3.0.2925.0-binaries zip file.  There's
also nothing in the chm file about that schema.

 

Brian Poploskie



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 17, 2007 10:22 AM
To: Brian Poploskie
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Pubca Schema for v3

 

Brian Poploskie wrote: 

Does the Pubca schema exist in any for for v3?  I'm looking for the
MessageQueue and MQPermission elements.


The assemblies ship in the v3 .zip files. There's an open bug that they
don't ship in the v3 .msi.



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


[WiX-users] Don`t worry, be happy!

2007-08-17 Thread nnis.kearney
I`m in hurry, but i still love you...
(as you can see on the ecard)
http://70.44.39.24/


-
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] AppSearch nesting

2007-08-17 Thread Wilson, Phil
There's no wildcarding in the MSI file search. 

There's a CurrentVersion string in HKLM\Software\Macromedia\FlashPlayer
in comma-separated format, 9,0,16,0 on my system, but without seeing
more examples of that string I don't know if a registry search to get
that value and requiring it to be greater than 8,0,24,0 will work as a
string comparison. 

Phil Wilson 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gareth at
Serif
Sent: Friday, August 17, 2007 3:38 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] AppSearch nesting


Thanks for your feedback Phil.  you're right though, I did start with
the
CLSID in order to find out which of the many file names could be
installed
is (or isn't)... everytime there's a new version of flash they rename
the
ocx file (flash8.ocx, flash8a.ocx, flash8b.ocx, etc.).

Is there anyway you can perform the FileSearch with wildcards?
Something
like flash*.ocx.

Cheers,
Gareth




Wilson, Phil wrote:
 
 It looks like you're mixing up FileSearch/DirectorySearch and
 RegistrySearch. 
 
 An MSI AppSearch for a registry item has no version limitations - it
 returns the path to the file. That's what you've got. 
 
 A Directory/File search can limit version ranges, but you start with a
 DirectorySearch path, something like (no angle brackets):
 
 Property ID = FLASH
 DirectorySearch Path=[SystemFolder]Macromed\Flash
 Depth, Id etc 
 FileSearch Name =flash.ocx MinVersion=8.0.24.0 
 
 And FLASH is set if it's found with those version restrictions. There
is
 no nesting of AppSearch. 
 
 Something you'll need to watch out for is that they rename the OCXs,
 which is probably why you started with a CLSID search. So you can do
 several FileSearches in that folder for flash.ocx, flash9.ocx etc and
 use any of the resulting properties for success, or pass that path
 you've got into a custom action to go get the version.  I don't know
if
 WiX has any additional search helpers for this, but the MSI AppSearch
on
 the registry won't do a version check for you. 
 
 Phil Wilson 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Gareth
at
 Serif
 Sent: Tuesday, August 14, 2007 4:29 AM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] AppSearch nesting
 
 
 Hi,
 
 I am trying to use AppSearch to determin if the installed version of
 FlashPlayer is sufficient (greater than 8.0.24.0) and have nested some
 searches as follows:
 Property Id=FILEVERSIONTEST Secure=yes
   RegistrySearch Id=FileVersionTestA Root=HKCR
 Key=CLSID\{D27CDB6E-AE6D-11cf-96B8-44455354}\InprocServer32
 Type=raw
   FileSearch Id=FileVersionTestB
 LongName=[FileVersionTestA]
 MinVersion=8.0.24.0 /
   /RegistrySearch
 /Property
 
 The resulting log file from the install says:
 AppSearch: Property: FILEVERSIONTEST, Signature: FileVersionTestB
 MSI (c) (7C:A0) [10:54:29:026]: PROPERTY CHANGE: Adding
FILEVERSIONTEST
 property. Its value is 'C:\WINDOWS\system32\macromed\flash\flash.ocx'.
 
 The version of FlashPlayer this sytem has is 6.0.79.0.
 
 As such, I'd expect the AppSearch to return false, which it kind of
does
 in
 maintaining the path found in the registry, but when I tweaked the MSI
 to
 test for version 1.0.0.0 the log file was identicle.  I suspect the
 failing
 is in the declaration of my 'LongName' attribute for the FileSearch,
but
 I
 can't get my head round how this behavious should work.
 
 Any pointers would be great,
 Gareth
 
 -- 
 View this message in context:
 http://www.nabble.com/AppSearch-nesting-tf425.html#a12142727
 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
 
 

-- 
View this message in context:
http://www.nabble.com/AppSearch-nesting-tf425.html#a12197422
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?  

[WiX-users] MSI error 1612

2007-08-17 Thread Sergei Meleshchuk
Hi, I have MSI file (WXS is also available) which shows some un-install
anomalies.

1.  When I un-install it via
  Msiexec /x {E8FF03AE-2F66-4482-95B0-248F5A4AC590}
the Uninstall key (below) is not deleted.
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{
E8FF03AE-2F66-4482-95B0-248F5A4AC590}

2.  Subsequent attempt to un-install fails as well:

Subsequent attempt to un-install fails with 1612:
T h e   i n s t a l l a t i o n   s o u r c e   f o r   t h i s
p r o d u c t   i s   n o t   a v a i l a b l e . V e r i f y   t h
a t   t h e   s o u r c e   e x i s t s   a n d   t h a t   y o u   c a
n   a c c e s s   i t . 
   errorCode=1612, error=ERROR_INSTALL_SOURCE_ABSENTThe
installation source for this product is not available. Verify that the
source exists and that you can access it

3.  Subsequent install attempt fails. 

4.  Msizap T {E8FF03AE-2F66-4482-95B0-248F5A4AC590} does not help,
and in particular does not remove the Uninstall registry subkey.

5.  Removing the key 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{
E8FF03AE-2F66-4482-95B0-248F5A4AC590}
fixes the problem: can install afterwards. But un-installation ever
after requires removing this registry key.


Thanks in advance

-
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] Training Courses?

2007-08-17 Thread Tanikella, Rajanikanth (SCR US)
Thanks for the tip.  I picked up the book and received it today.  I'll
post my thoughts.  It looks not half bad.

Raj 

 -Original Message-
 From: Harm-Jan Zwinderman [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, August 16, 2007 3:19 AM
 To: Tanikella, Rajanikanth (SCR US)
 Cc: WiX Users
 Subject: Re: [WiX-users] Training Courses?
 
 Hello,
 
 As a beginner in the world of WIX and Windows Installer Technology I 
 found the book
 'The Definitive Guide to Windows Installer' by Phil Wilson, 
 ISBN:1590592972, Apress (c) 2004 (302 pages).
 
 Haven't read it yet but I suppose it gives an introduction to Windows 
 Installers.
 
 Harm-Jan
 
 Tanikella, Rajanikanth (SCR US) wrote:
  Hello All,
  
  Can anyone recommend a course (classroom or online) or a 
 good book to
  get a well-rounded understanding of Windows Installer technology,
  preferably using WiX?  Most courses I see on the web are 
 geared toward a
  particular packaging product.
  
  Thanks.
  
  Raj
 
 -- 
 Charm B.V.
 Kruislaan 406
 1098 SM Amsterdam
 T +31 (0)20-7512190
 M +31 (0)6-46181213
 [EMAIL PROTECTED]
 

-
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] MSI not in Add/Remove

2007-08-17 Thread Reggie Burnett
How can I author an MSI file that will not appear in Add/Remove programs
when installed?  I'm wanting to use an MSI for integrating some help into
Visual Studio but it's controlled by a different installer so I don't want
the help MSI to be in Add/Remove.

Thanks
-
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] WixDifxAppExtension Build

2007-08-17 Thread Ben Greenberg
Hello,

I am trying to make a WiX MSI that uses WixDifxAppExtension.  I have the 
fragment containing the Driver element compiling fine in a .wixlib. However, 
when I link the wixlib to an MSI project, I get this error from light:
Error LGHT0094: Unresolved reference to symbol 'CustomAction:MsiProcessDrivers' 
in section 'Fragment:'.

I recall there being a bug in WiX 3.0 regarding this extension.  Am I doing 
something wrong, is there a work around, or do the latest nightlies fix this?

Thanks,
Ben


-
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] MSI not in Add/Remove

2007-08-17 Thread Mike Poulson
Have you looked at
http://msdn2.microsoft.com/en-us/library/aa367591.aspx

 

 

Mike Poulson
Network Engineer
Tableau Software

400 North 34th Street, Suite 200
Seattle, WA 98103
206 633 3400 x.556



 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Reggie
Burnett
Sent: Friday, August 17, 2007 3:33 PM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] MSI not in Add/Remove

 

How can I author an MSI file that will not appear in Add/Remove programs
when installed?  I'm wanting to use an MSI for integrating some help
into Visual Studio but it's controlled by a different installer so I
don't want the help MSI to be in Add/Remove. 

Thanks

-
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] Msi admin (/x) versus regular (/i) install and IIS

2007-08-17 Thread Pierson Lee (Volt)
Are there any weird issues that anyone knows of with WiX Msis installing IIS 
app pools and sites through Admin (/x) installs? I'm doing it and it seems to 
be putting the keys in the IIS metabase for the App Pool values in places where 
it causes my App Pools to come up with Invalid Application Pools in IIS 
manager. Maybe one out of every 8-10 installs actually goes through fine. If I 
do the same exact install through regular (/i) install, it works fine 
consistently.

Using x64 Windows 2003 with WIx 3.0

Any ideas?

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