Re: [WiX-users] Problem writing registry values

2007-07-26 Thread Anidil

It seems that MSI cannot write REG_DWORD type values to registry..Wht is the
workaround for this?


Anidil wrote:
 
 I'm using the following code to write an integer value to windows
 registry.
 
 Registry Id='PCPERegNotification' Root='HKLM'
 Key='Software\Wow6432Node\Product\Notification' Name='Notification Sounds
 Enabled'
  Action='write' Type='integer' Value='0x0001(1)' / 
 
 It gives me a permission denied to access the specified registry key
 message while running the msi.
 
 any help?
 

-- 
View this message in context: 
http://www.nabble.com/Problem-writing-registry-values-tf4149618.html#a11805535
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 deliver additional assembly (GAC'd) files(notin the RTM product) via an MSP

2007-07-26 Thread Gaurav Tiwari, HCL-Industry Solutions

Hello Bob,

 

For installing assemblies into GAC we were adding Assembly Manifest tag
in the .wxs which is authored by the tool but we were getting errors
stating Assembly tag is not supported. We need help about how existing
MSI's can be modified by the WIX 1.0?



 

Below contains the code snippet which is updating  the MSI.

 

 

string sProcessArgs = sWIXPathCandle +  -d \ +
sUpgradeMSIFilePath +\ \ + sWIXFilePath + \;

string CmdOut = UtilFunctions.CreateProcessWithOutput(cscript.exe,
sProcessArgs);

 

   sProcessArgs = sWIXPathHashUpdate +  /p:\ + sNewBinaryPath +\
/m:\ + sUpgradeMSIFilePath + \;

   CmdOut = UtilFunctions.CreateProcessWithOutput(cscript.exe,
sProcessArgs);

 

 

sWIXPathCandle: Contains Path to WIX 1.0 Candle compiler.

sUpgradeMSIFilePath: Contains Path to the Existing MSI.

sWIXFilePath: Contains Path to .wxp a file which intends to update the
Existing MSI.

 

 

Kindly help us on this.

 

Thanks  Regards

Gaurav Tiwari

Phone No.-0120-4046361



DISCLAIMER:
---
The contents of this e-mail and any attachment(s) are confidential and intended 
for the named recipient(s) only. 
It shall not attach any liability on the originator or HCL or its affiliates. 
Any views or opinions presented in 
this email are solely those of the author and may not necessarily reflect the 
opinions of HCL or its affiliates. 
Any form of reproduction, dissemination, copying, disclosure, modification, 
distribution and / or publication of 
this message without the prior written consent of the author of this e-mail is 
strictly prohibited. If you have 
received this email in error please delete it and notify the sender 
immediately. Before opening any mail and 
attachments please check them for viruses and defect.

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

2007-07-26 Thread John Hall
 I am trying to use wix for  installation of my product .When 
 i try to use the UI wizard  in my wxs file by using the 
 following lines:
 
 UIRef Id=WixUI_Mondo /
 
 UIRef Id=WixUI_ErrorProgressText /
 
 I get the fillowing error while linking :

 unresolved reference to the symbol 'WixUI: 
 WixUI_ErrorProgressText' in the section 
 
 Product={35D229AD-6CBC-4815-908D-33DB6E2691C0}

Chandan,

Are you using version 2 or version 3 of WiX?
In version 2 you do something like this:

  light.exe -out SampleWixUI.msi SampleWixUI.wixobj
path\lib\wixui.wixlib -loc path\lib\WixUI_en-us.wxl

and in version 3, something like:

  light.exe -out SampleWixUI.msi SampleWixUI.wixobj -ext
path\WixUIExtension.dll -cultures:en-us

where path is the the path of your WiX installation.

Cheers,
John

-
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] Problem writing registry values

2007-07-26 Thread John Hall
 It seems that MSI cannot write REG_DWORD type values to 
 registry..Wht is the workaround for this?

Anidil,

The documentation for the registry table in MSI says:

This column is the localizable registry value. The field is Formatted.
If the value is attached to one of the following prefixes (i.e. #%value)
then the value is interpreted as described in the table. Note that each
prefix begins with a number sign (#). If the value begins with two or
more consecutive number signs (#), the first # is ignored and value is
interpreted and stored as a string.

 #x The value is interpreted and stored as a hexadecimal value
(REG_BINARY). 
 #% The value is interpreted and stored as an expandable string
(REG_EXPAND_SZ). 
 # The value is interpreted and stored as an integer (REG_DWORD). 

So just put a '#' on the front of your number: Value='#1'

Regards,
John

-
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] Problem writing registry values

2007-07-26 Thread John Hall
 I have tried prefexing # for all the DWORD types but after 
 running the MSI i see that the registry is getting updated as 
 type REG_SZ

Looks like I misled you - the RegistryValue element has a 'Type'
attribute, which you can set to 'integer':

  RegistryValue Id=Registry1 Name=IntValue Value=42
Type=integer /

Cheers,
John

-
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] Problem writing registry values

2007-07-26 Thread Anidil

I have tried prefexing # for all the DWORD types but after running the MSI i
see that the registry is getting updated as type REG_SZ



John Hall-9 wrote:
 
 It seems that MSI cannot write REG_DWORD type values to 
 registry..Wht is the workaround for this?
 
 Anidil,
 
 The documentation for the registry table in MSI says:
 
 This column is the localizable registry value. The field is Formatted.
 If the value is attached to one of the following prefixes (i.e. #%value)
 then the value is interpreted as described in the table. Note that each
 prefix begins with a number sign (#). If the value begins with two or
 more consecutive number signs (#), the first # is ignored and value is
 interpreted and stored as a string.
 
  #x The value is interpreted and stored as a hexadecimal value
 (REG_BINARY). 
  #% The value is interpreted and stored as an expandable string
 (REG_EXPAND_SZ). 
  # The value is interpreted and stored as an integer (REG_DWORD). 
 
 So just put a '#' on the front of your number: Value='#1'
 
 Regards,
 John
 
 -
 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/Problem-writing-registry-values-tf4149618.html#a11806670
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


[WiX-users] Problem with VS2005

2007-07-26 Thread Jaap de Wolff
Hello,

After not using WIX a while, we made a new release, and now VS2005 is
crashing when i want to create a new WIX project.
Also opening an old wix project, does not open anything.
I already removed and reinstalled votive, but this did not solve the
problem.

I recently installed also Extensions for Windows WF, and .NET
Framework 3.0Development tools as VS2005 plugins.

Anyone else who also installed those plugins, but has no problems?

Or (better) anyone who know about this problem and knows a workaround?

Jaap
-
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] Problem writing registry values

2007-07-26 Thread John Hall
 Oki..The ReistryKey and RegistryValue tags are used only with 
 WiX 3.0 right?

Yes. Under WiX 2.0, you seem to just use the Registry element, which
also has a Type attribute:

  Registry Id=Registry1 Root=HKLM Key=Software\Product Value=42
Type=integer /

Cheers,
John

-
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 automated uninstall?

2007-07-26 Thread Bob Arnson

LEMIRE, JOHN wrote:
The scenario is an automated deployment environment that attempts to 
run a scheduled upgrade of minor revisions of a product.
Therefore the numbers of the currently installed and to be installed 
versions only differ in the revision position.
The major/minor/build positions are identical. This leads msi to not 
perform the install as it only looks as far as build to determine 
difference.


The first best practice: For product versions, the build number should 
increment with every build. A common scheme is to encode a date of some 
kind in the build number and to use the revision only in the case of 
multiple builds on the same day.


Being a good wix citizen I have set my Product Id=* .../ which 
means new ProductCode for every build and makes it hard to script 
uninstall by ProductCode.
Is there a way to achieve the unistall that I'm overlooking? Getting 
the build portion of the version number changed is beyond my control 
and even new minor revisions do need to be deployed for testing.


It's easy if you need to track only the products that have been shipped 
to customers: Open 'em up in Orca and write down the ProductCode 
property value.g Otherwise, you need to write a bit of MSI SQL to get 
it so it can be recorded somewhere. Something like:


SELECT `Value` FROM `Property` where `Property`.`Property` = 'ProductCode'

--
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] Problems when running installer silently from command line

2007-07-26 Thread Mike Menaker
What are possible issues with running an installer silently from the
commandline:

 

MSIEXEC /i MyInstaller.msi /Log LOGFILE.TXT /qn ADDLOCAL=AllMyVariables
 
This works for almost the entire installer. However, it has a problems
with an internal property that is set on a UI page (it doesn't get
evaluated even though it is defaulted to false and should install
something).
 
And another is a component that doesn't rely on anything but for reason
the files don't get copied and the registry is unchanged.
 
Is there any known issues from the installer?
 
BTW I'm using WiX 2.0
 
Thanks,
Mike

 

-
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] Transform validation

2007-07-26 Thread Leo ...

What value do I specify in the Validation attribute of the TargetImage 
element to have the product code, upgrade code, product version and most 
importly the product language to be validated?  Thx!-
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] Administrative install and File/Folder Sharing

2007-07-26 Thread Pierson Lee (Volt)
From my understand of reading MSIExec's help file (and I might be totally 
wrong) the /a flag (for admin install) is for a network install. If that's the 
case with the CA not running, why would it then generate an error message?

Is it possible to run the util:FileShare as a local admin instead of as the 
installer of the MSI? I know with regular CA's you can impersonate.

The message I get in the log is below:

CreateSmb:  Error 0x80004005: Failed to create/modify file share: Err: 5
CreateSmb:  Error 0x80004005: failed to create to share: 'EmailShare'
MSI (s) (14!0C) [11:27:05:350]: Product: WebService -- Error 26301. Failed to 
create network share.  (-2147467259   EmailShare  )

Error 26301. Failed to create network share.  (-2147467259   EmailShare  )

And during rollback I get:

MSI (s) (14:8C) [11:27:05:522]: Executing op: 
FolderRemove(Folder=E:\Web\EmailShare\,Foreign=0)
MSI (s) (14:8C) [11:27:05:522]: Note: 1: 1321 2: E:\Web\EmailShare\
DEBUG: Error 2911:  Could not remove the folder E:\Web\EmailShare\.
The installer has encountered an unexpected error installing this package. This 
may indicate a problem with this package. The error code is 2911. The arguments 
are: E:\Web\EmailShare\, ,

From: Bob Arnson [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 26, 2007 1:09 PM
To: Pierson Lee (Volt)
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Administrative install and File/Folder Sharing

Pierson Lee (Volt) wrote:
I'm doing a remote admin installation using an internal MSI deployment tool. My 
problem is that when I go to set the folder permissions for a FileShare it's 
telling me I don't have permissions to do this.

Administrative installations are basically just extracting compressed data into 
the destination tree. None of the WiX custom actions operate during admin 
installs.


--

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

2007-07-26 Thread jcafaro10

I'm new to Wix and I'm using Wix 3.  So far I've been able to figure out
everything I need to do except one thing.  I need to install a few exe's
after the main program installs.  Here's what I have.  It doesn't run the
exe's though.  One thing I did notice however, after installing the program
and clicking on the msi again and selecting remove, it runs the correct
exes.  I don't understand why it would happen when I'm uninstalling but not
installing.

CustomAction
Id=AInstall
FileKey=aexe
ExeCommand=deferred 
Return=asyncWait /

InstallExecuteSequence
  Custom
  Action=AInstall
  After=InstallFiles
NOT Installed
  /Custom
/InstallExecuteSequence

CustomAction
Id=BInstall
FileKey=bexe
ExeCommand=deferred 
Return =asyncWait /

InstallExecuteSequence
  Custom
  Action=BInstall
  After=InstallFiles
NOT Installed
  /Custom
/InstallExecuteSequence
-- 
View this message in context: 
http://www.nabble.com/About-custom-actions-tf4153898.html#a11818410
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] Problems when running installer silently from commandline

2007-07-26 Thread Mike Dimmick
If you run silently from the command line, the UI sequence is not processed
at all, it goes straight to InstallExecuteSequence.

 

Therefore, if you have any custom actions that will dictate what gets
installed, you need to ensure that they are scheduled in
InstallExecuteSequence, instead of or in addition to being scheduled in
InstallUISequence. If the action won't work properly if run twice, set
CustomAction/@Execute=firstSequence so that it runs in either the UI
sequence, if UI is enabled (/qf or /qr) or in the Execute sequence, if not
(/qb or /qn).

 

-- 

Mike Dimmick

 

  _  

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Menaker
Sent: 26 July 2007 20:22
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Problems when running installer silently from
commandline

 

What are possible issues with running an installer silently from the
commandline:

 

MSIEXEC /i MyInstaller.msi /Log LOGFILE.TXT /qn ADDLOCAL=AllMyVariables
 
This works for almost the entire installer. However, it has a problems with
an internal property that is set on a UI page (it doesn't get evaluated even
though it is defaulted to false and should install something).
 
And another is a component that doesn't rely on anything but for reason the
files don't get copied and the registry is unchanged.
 
Is there any known issues from the installer?
 
BTW I'm using WiX 2.0
 
Thanks,
Mike

 

-
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] Error code 2753?

2007-07-26 Thread Wilson, Phil
This error usually refers to a custom action that's running an exe
that's being installed with the product, but isn't installed for some
reason (perhaps because the exe is already on the system and won't be
replaced because of versioning rules). So it can't run the exe from your
package because it's not being installed. There are other variations,
but they all come down to trying to run a custom action of a file that
you're not actually installing. 

Phil Wilson 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10
Sent: Thursday, July 26, 2007 2:48 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code 2753?


Trying to get my installer to work.  It works for the main files but
there are some files I don't want to install unless I click Complete (as
Opposed to typical, I'm using mondo).  It copies the files correctly
regardless but when I also want it to run the ones that it copies.  I
think the problem is because of TypicalDefault=advertise but isn't
that how I set a feature to not be installed typically but only under
comlpete? Example:

Directory Id=dotnetfx Name=dotnetfx
  Component Id=dotnetfx.exe
Guid={3AF116C7-E703-4F4D-B7BC-B9D4C0E0F093}
File Id=dotnetfxexe Name=dotnetfx.exe KeyPath=yes
Source=C:\tfs\ChannelBox\prereq\dotnetfx\dotnetfx.exe /
  /Component
/Directory
--
Feature Id='dotnetfx' Title='Microsoft .NET Framework' Level=1
TypicalDefault=advertise
ComponentRef Id=dotnetfx.exe / /Feature
--
CustomAction
Id=DotNetInstall
FileKey=dotnetfxexe
ExeCommand=deferred 
Return=ignore /

InstallExecuteSequence
  Custom
  Action=DotNetInstall
  After=InstallFinalize

  /Custom
/InstallExecuteSequence
--
View this message in context:
http://www.nabble.com/Error-code-2753--tf4154344.html#a11819770
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


[WiX-users] More PI}}LS IN$$IDE

2007-07-26 Thread Wix-users
{BODY}-
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] Error code 2753?

2007-07-26 Thread jcafaro10

Trying to get my installer to work.  It works for the main files but there
are some files I don't want to install unless I click Complete (as Opposed
to typical, I'm using mondo).  It copies the files correctly regardless but
when I also want it to run the ones that it copies.  I think the problem is
because of TypicalDefault=advertise but isn't that how I set a feature to
not be installed typically but only under comlpete? Example:

Directory Id=dotnetfx Name=dotnetfx
  Component Id=dotnetfx.exe
Guid={3AF116C7-E703-4F4D-B7BC-B9D4C0E0F093}
File Id=dotnetfxexe Name=dotnetfx.exe KeyPath=yes
Source=C:\tfs\ChannelBox\prereq\dotnetfx\dotnetfx.exe /
  /Component
/Directory
--
Feature Id='dotnetfx' Title='Microsoft .NET Framework' Level=1
TypicalDefault=advertise
ComponentRef Id=dotnetfx.exe /
/Feature
--
CustomAction
Id=DotNetInstall
FileKey=dotnetfxexe
ExeCommand=deferred 
Return=ignore /

InstallExecuteSequence
  Custom
  Action=DotNetInstall
  After=InstallFinalize

  /Custom
/InstallExecuteSequence
-- 
View this message in context: 
http://www.nabble.com/Error-code-2753--tf4154344.html#a11819770
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


[WiX-users] Adding a new element using XmlFile

2007-07-26 Thread Ion Costco
Hi! 

 

I have this statement below that changes a configuration string in a xml file:

 

  XmlFile Id=CfgConfigureConnectionString

   File=[TARGETDIR]\Web.Config

   Action=setValue

   Name=value

   Value=Data Source=[SQLSERVERNAME];Initial 
Catalog=[SQLDATABASENAME];Integrated Security=True

   ElementPath=//configuration/appSettings/[EMAIL 
PROTECTED]'ConnectionString'[\]]

   Sequence=10/

 

 

I can't figure out how do I make it so if the add element with key attribute 
matching the path is missing, it will create it, and it will set the value for 
the attribute provided by Name (in this case value) to the given value. I 
thought using createValue instead of setValue will do the trick but I get the 
same error when the line add key=ConnectionString 
value=server=localhost;Trusted_Connection=yes; database=PRSDB/ is missing. 

 

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


Re: [WiX-users] ProjectAggregator2-3.0.2925.msi fails to install with odd network error

2007-07-26 Thread Christopher Painter
That's not what I meant.  When you said it was a `Visual Studio MSI` I didn't 
think you meant that it was from the Visual Studio Team, I thought you meant 
that it was a VDPROJ created MSI. In fact, I can see it's created using WiX 2.0.
   
  Which brings us back to the orginal question
   
  
Bob Arnson [EMAIL PROTECTED] wrote:
  Christopher Painter wrote:
 IMHO, that's even more inexcusable.

Why is it inexcusable to redistribute a redistributable package?

-- 
sig://boB
http://joyofsetup.com/




   
-
Yahoo! oneSearch: Finally,  mobile search that gives answers, not web links. -
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] Building a setup.exe

2007-07-26 Thread Jim Hewes
 
I've been working on building an installer using Wix. Building an msi seems
to work well and I have no major problem. But where I'm getting bogged down
is in the things surrounding it, such as the setup.exe program. I have a
couple of questions.
 
1. I've noticed the setupbld.exe utility and I've tried it. It seems to
create a setup.exe with all files packed into a single EXE, which are then
extracted at runtime. That's good. But in addition to that, I also need a
setup.exe that will launch loose, uncompressed files for installation from a
CD. Can it currently do that as well?
 
2. This isn't so much a question as a feature request. I need for to the
setup.exe to show a language selection dialog to allow the user to select an
installation language (like Installshield does). I think I will probably try
to add it myself to the setupexe project if it never gets added by the Wix
guys.
 
3. I read about chaining as a way of handling more than one installation. I
currently have this requirement, since I need to install a driver and also
an application that works with the product. For various reasons, it's better
for us not to package these in the same installer. But chaining doesn't seem
like an ideal solution either---I think that automatically launching one
installer after another can be confusing to the end user.
I think a better solution, at least for CD installation, is to begin with a
menu. The menu allows the user to choose what to install; that is, which
installer to run. The menu can list the device installer and the application
installer. It can also allow users to optionally install things like Adobe
Reader if your documentation is in PDF form. I've seen some products that do
this and they have graphically pretty menu programs.
Unfortunately, in doing a search, I didn't find any decent existing software
for developing such a menu program. Can anyone recommend something? Sure,
perhaps it's really just a dialog with buttons, so you can probably write
one yourself (I'm a C++ programmer).  But I was hoping to find something
that included some pre-designed fancy graphics, and allowed you to slap
together a menu launcher in an hour or so with no programming. Does this
make sense? Or am I thinking in the wrong direction?
 
 
Although I like the feeling of working close to the metal with Wix as
compared to some commercial product like InstallShield, I also seem to be
getting slowed by the setup.exe issues outside of the actual msi more than
anything.
 
Thanks for any comments.
 
Jim
-
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] ProjectAggregator2-3.0.2925.msi fails to install with odd network error

2007-07-26 Thread Bob Arnson
Christopher Painter wrote:
 IMHO, that's even more inexcusable.

Why is it inexcusable to redistribute a redistributable package?

-- 
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] getting data from ini or (failing that) the user

2007-07-26 Thread Bob Arnson
Alexei wrote:
 just wondering if it is possible to have an install read values and assign
 them to properties if there is the appropriate .ini file but if the file can
 not be found to go ahead and display the GUI (which will then be able to get
 the data from the user).
   

There's no support for reading arbitrary .ini files; that would require 
a custom action. If you want to support a silent install that requires 
data, you can use command-line switches:

MSIEXEC /l*vx install.log /i my.msi PROPERTY1=FOO PROPERTY2=BAR 
PROPERTY9=BAZ

-- 
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] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Christopher Painter
Public properties are described:
   
  http://msdn2.microsoft.com/en-us/library/aa370912.aspx
   
  http://msdn2.microsoft.com/en-us/library/aa371245.aspx
   
  A subtle correction of the definition is that a public property cannot 
contain lowercase letters.  It may contain other special characters.
  

Pierson Lee (Volt) [EMAIL PROTECTED] wrote:
  Public properties in WiX are specified by the fact that the Property Id (the 
name) is all in Caps

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Magus
Sent: Thursday, July 26, 2007 12:02 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unable to Pass Parameters via 
MsiInstallProductW(Path_TO_MSI, CMDLINE)


How do I make a property Public? Or are there only certain public
properties?

Christopher Painter wrote:

 Only public properties can be passed via the command line. Also you
 probably want to set the TRANSFORMS property not the TRANSFORM property.

 Magus wrote:
 I have a bootstrapper that is suppose to set 2 properties via command
 line,
 however none of the properties that I set in the Cmdline are being set. Is
 there something I am doing wrong?

 CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
 --
 View this message in context:
 http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
 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.
 -
 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/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11817009
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


   
-
Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.-
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] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Magus

How do I make a property Public?  Or are there only certain public
properties?

Christopher Painter wrote:
 
 Only public properties can be passed via the command line.  Also you
 probably want to set the TRANSFORMS property not the TRANSFORM property.
 
 Magus [EMAIL PROTECTED] wrote:  
 I have a bootstrapper that is suppose to set 2 properties via command
 line,
 however none of the properties that I set in the Cmdline are being set. Is
 there something I am doing wrong?
 
 CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
 -- 
 View this message in context:
 http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
 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. 
 -
 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/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11817009
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] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Christopher Painter
Only public properties can be passed via the command line.  Also you probably 
want to set the TRANSFORMS property not the TRANSFORM property.

Magus [EMAIL PROTECTED] wrote:  
I have a bootstrapper that is suppose to set 2 properties via command line,
however none of the properties that I set in the Cmdline are being set. Is
there something I am doing wrong?

CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
-- 
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
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


   
-
Looking for a deal? Find great prices on flights and hotels with Yahoo! 
FareChase.-
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 change TARGETDIR to e drive

2007-07-26 Thread Pierson Lee (Volt)
You don't need it as a custom action. Just specify a property Property 
Id=TARGETDIRe:\/Property



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ravit Shapira
Sent: Tuesday, July 24, 2007 11:46 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] How to change TARGETDIR to e drive

 Hi,

I want to add to my previous email that if I run the installation using:  
msiexec /i MySetup.msi TARGETDIR=e:\ it does installs what I need under e 
drive.
However, my goal is to run the setup without passing any parameters - simply to 
double click on the msi file.

Thanks,
Ravit

From: Ravit Shapira
Sent: Tuesday, July 24, 2007 11:38 PM
To: 'wix-users@lists.sourceforge.net'
Subject: How to change TARGETDIR to e drive

 Hi,

I'm trying to change TARGETDIR to e drive.  I tried to do the following but it 
installs under c drive.

CustomAction Id=AssignEDir2INSTALLDIR Directory=TARGETDIR Value=E:\ 
Execute=firstSequence /
InstallExecuteSequence
  Custom Action=AssignEDir2INSTALLDIR 
After=CostFinalizeTARGETDIR=E:\/Custom
/InstallExecuteSequence

I ran the installation using msiexec and created a log file. I looked for the 
action: AssignEDir2INSTALLDIR and it says that it is skipped due to false 
condition.


 1.  Do you have an explanation why the condition is false? I do have e drive 
in the computer that I use.
 2.  How can I fix this problem? All I need is to change the default value of 
TARGETDIR from c:\ to e:\


Thank you in advance,
Ravit


-
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] Problem writing registry values

2007-07-26 Thread Daryn Mitchell
Anidil,

Does it help if you pass Value='1' instead of Value='#0x0001(1)'?

Daryn.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Anidil [...]
Now that i don't get permission denied message after prefexing # for all the
DWORD types as follows :

Registry Id=PCPERegNotification Root=HKLM
Key=Software\Wow6432Node\Product\Notification
Registry Action=write Name=Notification Sounds Enabled
Type=integer Value=#0x0001 (1)
xmlns=http://schemas.microsoft.com/wix/2006/wi; /
  /Registry

but i see that the registry is getting updated as type REG_SZ... :(



-
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] getting data from ini or (failing that) the user

2007-07-26 Thread Alexei

Hey all,
just wondering if it is possible to have an install read values and assign
them to properties if there is the appropriate .ini file but if the file can
not be found to go ahead and display the GUI (which will then be able to get
the data from the user).
The thing I'd like is to have this sort of
if (file found)
   get data from file
else
   get data from GUI

flow in the install, without having to create two separate installers.

Thanks in advance.
-- 
View this message in context: 
http://www.nabble.com/getting-data-from-ini-or-%28failing-that%29-the-user-tf4152625.html#a11813818
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 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] Checkbox drawn with different coloured background

2007-07-26 Thread Bob Arnson

John Hall wrote:
I wanted to add a checkbox at the end of my installer and found the 
WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT property. However, when the 
checkbox is displayed it is drawn with the wrong background colour - 
see the attached screenshot. This is with Wix 3.0.3120.0.
 
Is there a way around this?


No. Unfortunately, checkbox controls don't support transparency.

I guess one way would be to draw the checkbox without a label and then 
add a Text control with the transparent attribute set. Is there an 
easy way to replace just one dialog in one of the standard UI sets?


That's bad for two reasons:

1. It breaks user expectations, because many users expect to be able to 
click the checkbox's text. (Though that might be less true thanks to 
awful Web UI.)
2. It breaks accessibility as the checkbox no longer has associated text 
that screen readers can read.
3. (Bonus reason!) The checkbox itself uses the default control 
background so you can't avoid it entirely.


The best workaround is to use a bitmap that doesn't have a bunch of 
white in it.


You should be able to replace ExitDialog but you'll need to copy the 
fragment for whichever dialog set you're using to do so.


--
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] Unicode and troubles

2007-07-26 Thread Bob Arnson
Magus wrote:
 Is there any way to convert Unicode to said code page via code? I am lucky
 enough to be using an external UI.  There is only 1 dialog (Disk Cost) that
 is displays internally.  Is there a way to get the information that a Disk
 Cost dialog would display from the MSI?
   

I don't know. What about the disk cost dialog needs to worry about 
Unicode -v- code page? Is it even a problem?

-- 
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] ProjectAggregator2-3.0.2925.msi fails to installwith odd network error

2007-07-26 Thread Richard.Foster
I don't know if it was actually the case, or if it was an email
formatting thing, but it looked almost as if the original MSI name had
spaces in it, and the one that works didn't. Could that possibly be the
root cause of the problem?

 

Regards,

Richard

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott
Palmer
Sent: Thursday, July 26, 2007 10:20 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] ProjectAggregator2-3.0.2925.msi fails to
installwith odd network error

 

If an upgrade isn't supported then what happened when I renamed the file
and it just worked ?

I think that the msi files provided with WiX itself should be good
examples to follow... but perhaps they aren't. 

Scott

On 7/25/07, Quattro IV [EMAIL PROTECTED] wrote:

I got that same error, you have to remove the previous version before
running the new one. At least that worked for me. An upgrade wasn't
supported apparently.

 




* C O N F I D E N T I A L I T Y N O T I C E *
---
The content of this e-mail is intended solely for the use of the individual or 
entity to whom it is addressed. If you have received this communication in 
error, be aware that forwarding it, copying it, or in any way disclosing its 
content to any other person, is strictly prohibited. Quixote Traffic 
Corporation is neither liable for the contents, nor for the proper, complete 
and timely transmission of (the information contained in) this communication. 
If you have received this communication in error, please notify the author by 
replying to this e-mail immediately and delete the material from any computer.


-
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] Problem writing registry values

2007-07-26 Thread Anidil

I'm using WIX 2.0 and i have mentioned the type attribute in the registry
tag as given in my code..
But it doesn't seems to work as expected :(


John Hall-9 wrote:
 
 Oki..The ReistryKey and RegistryValue tags are used only with 
 WiX 3.0 right?
 
 Yes. Under WiX 2.0, you seem to just use the Registry element, which
 also has a Type attribute:
 
   Registry Id=Registry1 Root=HKLM Key=Software\Product Value=42
 Type=integer /
 
 Cheers,
 John
 
 -
 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/Problem-writing-registry-values-tf4149618.html#a11808351
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


[WiX-users] Reorganising features and major upgrades

2007-07-26 Thread John Hall
I'm in the process of migrating my installer from InstallShield to WiX
3. As part of this I have reorganised and rationalised the features in
the product.
 
When I come to do a major upgrade from the old installation to my new
one, all of the features in my product in the customize dialog are
unselected. If I install cleanly, they are all selected.
 
I've made sure that MigrateFeatures is set to 'no' in the Upgrade
element, and have even tried disabling the MigrateFeatures action when
upgrading from the previous installer version. A typical feature in the
product looks like this:
 
Feature Id=ChainDebugger
 Title=Chain Debugger
 Description=XJTAG Chain Debugger Tool
 Level=1
 Display=50 
 AllowAdvertise=no
...
/Feature
 
Is there something obvious I might be doing wrong?
 
Regards,
John
-
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] Problem writing registry values

2007-07-26 Thread Anidil

I'm using the following code to write an integer value to windows registry.

Registry Id='PCPERegNotification' Root='HKLM'
Key='Software\Wow6432Node\Notification' Name='Notification Sounds Enabled'
 Action='write' Type='integer' Value='0x0001(1)' / 

It gives me a permission denied to access the specified registry key message
while running the msi.

any help?
-- 
View this message in context: 
http://www.nabble.com/Problem-writing-registry-values-tf4149618.html#a11804969
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] ProjectAggregator2-3.0.2925.msi fails to installwith odd network error

2007-07-26 Thread Bob Arnson

Mike Dimmick wrote:


The MSI file probably shouldn't even be renamed -- aren't there issues 
with using a different filename for an upgrade MSI?




Yes, only major upgrades support it. And on wix.sf.net/releases, we 
don't rename it. But on the SF releases page, we have to, hence the .zip 
we used to use.


--
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] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Christopher Painter
Only public properties can be passed via the command line.  Also you probably 
want to set the TRANSFORMS property not the TRANSFORM property.

Magus [EMAIL PROTECTED] wrote:  
I have a bootstrapper that is suppose to set 2 properties via command line,
however none of the properties that I set in the Cmdline are being set. Is
there something I am doing wrong?

CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
-- 
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
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. -
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] Administrative install and File/Folder Sharing

2007-07-26 Thread Pierson Lee (Volt)
I'm doing a remote admin installation using an internal MSI deployment tool. My 
problem is that when I go to set the folder permissions for a FileShare it's 
telling me I don't have permissions to do this.

Is there an easy way to elevate the MSI installation so that it will attempt to 
setup the share using local admin privileges? If I assign the tool's user's 
permission ( which is what the tool uses to install the msi) to the folder, it 
works, but then I have to remove those permissions, which makes it a hassle.


Using Wix 3, code is below. Thanks - Pierson

  Directory Id=EmailShareDir Name=EmailShare
Component Id=EmailShareComponent 
Guid={----}
  CreateFolder Directory=EmailShareDir

Permission User=[SERVICE_USERNAME] 
GenericAll=yes TakeOwnership=yes/
  /CreateFolder
  util:FileShare Id=EmailShareFileShare 
Name=EmailShare Description=Email Share 
util:FileSharePermission User=ShareUser 
GenericAll=yes TakeOwnership=yes /
  /util:FileShare
/Component
  /Directory
-
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] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Magus

I have a bootstrapper that is suppose to set 2 properties via command line,
however none of the properties that I set in the Cmdline are being set.  Is
there something I am doing wrong?

CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
-- 
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
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] ProjectAggregator2-3.0.2925.msi fails to installwith odd network error

2007-07-26 Thread Matthew Janulewicz
We should be thanking the Wix team for providing this 'third-party' .msi
from Microsoft instead of making us hunt it down on MSDN. Geesh.

 

 

-Matt

 

 

  _  

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Christopher Painter
Sent: Thursday, July 26, 2007 10:57 AM
To: Bob Arnson; Scott Palmer
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] ProjectAggregator2-3.0.2925.msi fails to
installwith odd network error

 

IMHO, that's even more inexcusable. 

Bob Arnson [EMAIL PROTECTED] wrote:

 I think that the msi files provided with WiX itself should be
good 
 examples to follow... but perhaps they aren't.

That's a Visual Studio MSI, not a WiX 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

 

  

  _  

Sick sense of humor? Visit Yahoo! TV's Comedy with an Edge
http://us.rd.yahoo.com/evt=47093/*http:/tv.yahoo.com/collections/222
to see what's on, when. 

-
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] Installer fails while reading the function from DLL

2007-07-26 Thread Naresh Krishna Kumar K

Hi,

I checked in the Project-Properties-Configuration Properties-C/C++-Code
Generation - Runtime library is Multi-threaded(/MT) only. Is there anything
else I should do in order to resolve this issue? The installer is working
fine in windows xp and vista and the issue is only with windows server 2003.

Thanks,
Naresh Krishna Kumar. K



John Hall-9 wrote:
 
 I created a Windows Installer DLL using Visual Studio C++. 
 The installer is working fine in windows xp and vista. But 
 when I run the installer which has custom action dll in 
 windows 2003, it is not installing in windows server 2003. Is 
 it known issue or does any body have idea this issue?
 
 Naresh,
 
 Are you linking to the runtime libraries statically or dynamically? It
 is much safer to link statically, i.e. use Multi-threaded (/MT) rather
 than Multi-threaded DLL (/MD).
 
 Regards,
 John
 
 -
 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/Installer-fails-while-reading-the-function-from-DLL-tf4151133.html#a11815927
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


[WiX-users] Preprocessor Directives

2007-07-26 Thread Quattro IV

Where can I find the current list of preprocessor directives? I'm using the
list from this article,
http://msdn2.microsoft.com/en-us/library/aa302186.aspx#wixsetup_topic6 But
I'm getting compilation errors  in VS when using the
ProjectAggregator2-3.0.2925.0.msi. Thanks

Example error: Error 1 Undefined preprocessor variable '$(
var.DNA.RadWorkflow.TabletWorklist.TargetPath
)'. 
C:\RWFSystem\DNA.RadWorkflow\DNA.RadWorkflow.TabletWorklist\Application.TabletWorklist\Installer\TabletWorklist.wxs
19 1 TabletWorklist
-
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] WindowsVolume Directory

2007-07-26 Thread Bob Arnson
Quattro IV wrote:
 Hello, can anyone point me to a way to get a shortcut installed under 
 the windows volume folder without getting the following warning?

WindowsVolume points to the root directory where Windows is installed. 
Is that really what you wanted?

-- 
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] Reorganising features and major upgrades

2007-07-26 Thread Bob Arnson

John Hall wrote:
I'm in the process of migrating my installer from InstallShield to WiX 
3. As part of this I have reorganised and rationalised the features in 
the product.
 
When I come to do a major upgrade from the old installation to my new 
one, all of the features in my product in the customize dialog are 
unselected. If I install cleanly, they are all selected.


As always: Start with the verbose log. MSI will pass an ADDLOCAL 
property to the server when it comes to actually installing the product. 
I'm assuming you have RemoveExistingProducts scheduled early, so you can 
also check out InstallValidate action logging, to see the features and 
components that are getting removed (old version) and selected for 
install (new version).


--
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] Msi inside msi ?

2007-07-26 Thread Bob Arnson
Collins, James wrote:
   Yes I would agree fragments offer much more and I will keep that
 in mind moving forward. For me however I need a migration path from Wise
 to WIX and that's going to be merge modules for now. Once I have
 convinced my team WIX is the way to go (and believe me I'm trying very
 hard), and we are fully WIX then this approach makes much more sense. 
   

Easy way to start: Build fragments for everything then wrap them in a 
Module for those that need it and a .wixlib for those who don't.

-- 
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] ProjectAggregator2-3.0.2925.msi fails to install with odd network error

2007-07-26 Thread Bob Arnson
Scott Palmer wrote:
 If an upgrade isn't supported then what happened when I renamed the 
 file and it just worked ?

Because only a major upgrade supports renaming the MSI. It shouldn't be 
renamed on the SF releases page. As I recall, we shipped old versions in 
a .zip file because of this issue.

 I think that the msi files provided with WiX itself should be good 
 examples to follow... but perhaps they aren't.

That's a Visual Studio MSI, not a WiX 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] ProjectAggregator2-3.0.2925.msi fails to install with odd network error

2007-07-26 Thread Scott Palmer

If an upgrade isn't supported then what happened when I renamed the file and
it just worked ?

I think that the msi files provided with WiX itself should be good examples
to follow... but perhaps they aren't.

Scott

On 7/25/07, Quattro IV [EMAIL PROTECTED] wrote:


I got that same error, you have to remove the previous version before
running the new one. At least that worked for me. An upgrade wasn't
supported apparently.

-
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] How to add sections properly to app.config

2007-07-26 Thread Jaap de Wolff
Hello,

I am using Wix 2.0.5325.0

I have a app.config that I want to modify:

configuration
  applicationSettings
 TestService.Properties.Settings
setting name=Property serializeAs=String
  valueValue/value
/setting
setting name=MyProperty serializeAs=String
   valueMyValue/value
/setting
  /TestService.Properties.Settings
  /applicationSettings
/configuration

I want to insert the blue lines.
Remark, there are already lines before with the same node names before the
inserted lines!

I tried the following code in WIX:
XmlConfig Id='TestService_Settings_MyProperty'
Action='create' Name='setting'
File='[_TestService]TestService.exe.config'

ElementPath='//configuration/applicationSettings/TestService.Properties.Settings'
On=install
Node=element
Sequence=1
/
XmlConfig Id='TestService.Settings.MyProperty.Name'
File='[_TestService]TestService.exe.config'
Name='name'
ElementPath='TestService_Settings_MyProperty'
Value=MyProperty
Sequence=2
/
XmlConfig Id='TestService.Settings.MyProperty.SerializeAs'
File='[_TestService]TestService.exe.config'
Name='serializeAs'
ElementPath='TestService_Settings_MyProperty'
Value=String
Sequence=2
/
XmlConfig Id='TestService_Settings_MyProperty_Value'
File='[_TestService]TestService.exe.config'

ElementPath='//configuration/applicationSettings/NewBridges.Properties.Settings/[EMAIL
 PROTECTED]MyProperty[\]]'
Action=create
Name=value
On=install
Node=element
Sequence='3'/
XmlConfig Id='TestService.Settings.MyProperty.Value.Text'
File='[_TestService]TestService.exe.config'
ElementPath='Id='TestService_Settings_MyProperty_Value'
Value=MyValue
Sequence=4
/

Now it works as expected until the red lines.
I get the message
fError 25542. Failed to find node:
//configuration/applicationSettings/TestService.Properties.Settings/[EMAIL 
PROTECTED]
MyProperty] in XML file: C:\Program
Files\TestService\TestService.exe.config, system error: -2147020584
which is correct, while this node is not yet in the file.
However when I leave out the red lines, the node settings name=MyProperty
/ is created.

I also tried the lines below instead of the red lines:
XmlConfig Id='TestService.Settings.MyProperty.Value'
File='[_TestService]TestService.exe.config'
ElementPath='TestService_Settings_MyProperty'
Value=valueMyValue/value
Sequence=2
/
and several other things, but I was not able to create a xml-element with
sub-elements in an existing XML file

Anyone suggestions?

Jaap
-
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] Installer fails while reading the function from DLL

2007-07-26 Thread Naresh Krishna Kumar K

Hi,

I created a Windows Installer DLL using Visual Studio C++. The installer is
working fine in windows xp and vista. But when I run the installer which has
custom action dll in windows 2003, it is not installing in windows server
2003. Is it known issue or does any body have idea this issue?

Thanks,
Naresh Krishna Kumar. K
-- 
View this message in context: 
http://www.nabble.com/Installer-fails-while-reading-the-function-from-DLL-tf4151133.html#a11808929
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


[WiX-users] how to change msi working for 32 bit os to work for 64 bit os

2007-07-26 Thread shambhu kumar

hi
i m having msi of my product which is working on all 32 bit windows versions 
now iwant to create msi which will wirk for bith 32 and 64bit os  or will
work for 64 bit os. i have no idea what r the changes i m suppose to make in
my msi.  
-- 
View this message in context: 
http://www.nabble.com/how-to-change-msi-working-for-32-bit-os-to-work-for-64-bit-os-tf4151023.html#a11808606
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


[WiX-users] Parent Directory (2 levels up)

2007-07-26 Thread Levon Levonian
Hi All,

My installer needs to read a value from the registry and set the install
path based on that value. However, the installer should install 2 levels
up the value that was read from the registry. For example, I read the
registry and get the following:

C:\Temp\First\Second

And I want my configurable directory be set only to C:\Temp (that is, 2
levels up the directory that I got from the registry).

Is that possible and how can I achieve that with Wix?
Thank you!


**
READER BEWARE: Unencrypted, unsigned Internet e-mail is inherently insecure.

Internet messages may be corrupted, incomplete, misdirected or may
incorrectly identify the sender. Therefore, nothing in this message or
attachments may be considered legally binding.

THIS MESSAGE IS ONLY INTENDED FOR THE USE OF THE INDIVIDUAL
OR ENTITY TO WHICH IT IS ADDRESSED AND MAY BE PRIVILEGED.

If you are not the intended recipient or their authorized agent, you
may not forward or copy this information and must delete or destroy all
copies of this message and attachments received.

If you have received this communication in error, please notify
Matrikon Inc. by telephone at (780) 448-1010.
**

-
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] getting data from ini or (failing that) the user

2007-07-26 Thread Pierson Lee (Volt)
You can't set the installUI level (as I've been told) via the MSI. If you have 
a UI, it will be called. You can condition the UI to pop up particular screens 
if an INI file is not available, but the base UI screen (welcomedlg) will still 
be brought up in both cases.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alexei
Sent: Thursday, July 26, 2007 9:13 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] getting data from ini or (failing that) the user


Hey all,
just wondering if it is possible to have an install read values and assign
them to properties if there is the appropriate .ini file but if the file can
not be found to go ahead and display the GUI (which will then be able to get
the data from the user).
The thing I'd like is to have this sort of
if (file found)
   get data from file
else
   get data from GUI

flow in the install, without having to create two separate installers.

Thanks in advance.
--
View this message in context: 
http://www.nabble.com/getting-data-from-ini-or-%28failing-that%29-the-user-tf4152625.html#a11813818
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] beginning with Wix - which version?

2007-07-26 Thread Bob Arnson

Alan Sinclair wrote:
If I'm moving to WiX, which version should I use. How far off is 
stable v3 likely to be?


A colleague said I would wait for a stable 3.0 before considering 
switching. It's vastly improved over version 2, and is not backwards 
compatible.


The biggest risk with WiX v3 is that the schema will change and you'll 
have to update your authoring to upgrade to a newer version (e.g., to 
pick up bug fixes). No further breaking schema changes are planned, 
though they might happen anyway and there will definitely be schema 
changes just (probably) not breaking ones.


--
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 declare optional - but exclusive - components?

2007-07-26 Thread Bob Arnson
Crusty Applesniffer wrote:
 If user selects Service N°2 during installation, Service N°1 feature 
 will be unselected.
 If user selects Service N°1 during installation, Service N°2 feature 
 goes back to unselected
   

There's nothing automatic, either in the UI or with feature conditions, 
that support that. You could do it via control events by checking the 
feature's action state with featureId=3. See Examples of Conditional 
Statement Syntax in the MSI SDK doc for examples.

-- 
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] Installer fails while reading the function from DLL

2007-07-26 Thread Bob Arnson
Naresh Krishna Kumar K wrote:
 I checked in the Project-Properties-Configuration Properties-C/C++-Code
 Generation - Runtime library is Multi-threaded(/MT) only. Is there anything
 else I should do in order to resolve this issue? The installer is working
 fine in windows xp and vista and the issue is only with windows server 2003.
   

Check a verbose log to see if the CA is running at all. If not, you need 
to determine which dependencies your DLL has that aren't on Windows 2003.

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

2007-07-26 Thread chandan Koushik

Hi All,

I am trying to use wix for  installation of my product .When i try to use
the UI wizard  in my wxs file by using the following lines:

UIRef Id=WixUI_Mondo /

UIRef Id=WixUI_ErrorProgressText /

I get the fillowing error while linking :



unresolved reference to the symbol 'WixUI: WixUI_Mondo' in the section 

Product={35D229AD-6CBC-4815-908D-33DB6E2691C0}



unresolved reference to the symbol 'WixUI: WixUI_ErrorProgressText' in the
section 

Product={35D229AD-6CBC-4815-908D-33DB6E2691C0}



Plz help!!



Regards 

Chandan

-- 
View this message in context: 
http://www.nabble.com/WixUI_Mondo-tf4149525.html#a11804672
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] WixUI_Mondo

2007-07-26 Thread Anidil

You need to include the UI library file i.e. wixui.wixlib while linking your
object file


chandan Koushik wrote:
 
 Hi All,
 
 I am trying to use wix for  installation of my product .When i try to use
 the UI wizard  in my wxs file by using the following lines:
 
 UIRef Id=WixUI_Mondo /
 
 UIRef Id=WixUI_ErrorProgressText /
 
 I get the fillowing error while linking :
 
 
 
 unresolved reference to the symbol 'WixUI: WixUI_Mondo' in the section 
 
 Product={35D229AD-6CBC-4815-908D-33DB6E2691C0}
 
 
 
 unresolved reference to the symbol 'WixUI: WixUI_ErrorProgressText' in the
 section 
 
 Product={35D229AD-6CBC-4815-908D-33DB6E2691C0}
 
 
 
 Plz help!!
 
 
 
 Regards 
 
 Chandan
 
 

-- 
View this message in context: 
http://www.nabble.com/WixUI_Mondo-tf4149525.html#a11804930
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


Re: [WiX-users] Installer fails while reading the function from DLL

2007-07-26 Thread John Hall
 I created a Windows Installer DLL using Visual Studio C++. 
 The installer is working fine in windows xp and vista. But 
 when I run the installer which has custom action dll in 
 windows 2003, it is not installing in windows server 2003. Is 
 it known issue or does any body have idea this issue?

Naresh,

Are you linking to the runtime libraries statically or dynamically? It
is much safer to link statically, i.e. use Multi-threaded (/MT) rather
than Multi-threaded DLL (/MD).

Regards,
John

-
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 change msi working for 32 bit os to work for 64 bit os

2007-07-26 Thread John Vottero
 i m having msi of my product which is working on all 32 bit windows
 versions
 now iwant to create msi which will wirk for bith 32 and 64bit os  or
 will
 work for 64 bit os. i have no idea what r the changes i m suppose to
 make in
 my msi.

You need to make a copy of your 32bit WiX source (you can't have a
single installer for both 32 bit and 64 bit).  In the 64 bit copy, you
need to change:

Product/@Id=new guid
Product/@UpgradeCode=new guid
Package/@Id=new guid
Package/@Platforms=x64

For each component:

Component/@Guid=new guid
Component/@Win64=yes

You may need to add Win64=yes when referencing the registry too.



-
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 deliver additional assembly (GAC'd) files(notin the RTM product) via an MSP

2007-07-26 Thread Bob Arnson

Gaurav Tiwari, HCL-Industry Solutions wrote:


We need help about how existing MSI's can be modified by the WIX 1.0?



Sorry, WiX v1 hasn't been supported for almost three years now. I've 
never used it personally as it wasn't publicly released.


--
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] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Pierson Lee (Volt)
Public properties in WiX are specified by the fact that the Property Id (the 
name) is all in Caps

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Magus
Sent: Thursday, July 26, 2007 12:02 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unable to Pass Parameters via 
MsiInstallProductW(Path_TO_MSI, CMDLINE)


How do I make a property Public?  Or are there only certain public
properties?

Christopher Painter wrote:

 Only public properties can be passed via the command line.  Also you
 probably want to set the TRANSFORMS property not the TRANSFORM property.

 Magus [EMAIL PROTECTED] wrote:
 I have a bootstrapper that is suppose to set 2 properties via command
 line,
 however none of the properties that I set in the Cmdline are being set. Is
 there something I am doing wrong?

 CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
 --
 View this message in context:
 http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
 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.
 -
 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/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11817009
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