Re: [WiX-users] Service Install Password not sent correctly to Windows Service

2013-09-10 Thread Phil Wilson
When you do that through the UI Windows will add the "log on as a service" right to the account. It will not do that during the MSI install. You'll need to make sure that account has the right before the install. Phil Wilson On Tue, Sep 10, 2013 at 9:38 AM, Swaroop Kare wrote: > Hi, > > > >

Re: [WiX-users] offline install

2013-09-10 Thread Keith.Douglas
Ah ha, gotcha. I'll do that. Thanks, Keith Douglas Statistics Canada | 170 Tunney's Pasture Driveway, Ottawa ON K1A 0T6 Statistique Canada | 170, promenade Tunney's Pasture, Ottawa ON K1A 0T6 keith.doug...@statcan.gc.ca Telephone | Téléphone 613-951-4405 Facsimile | Télécopieur 613-951-1966 Gove

[WiX-users] ExitCode element

2013-09-10 Thread Keith.Douglas
Hi everyone, I did get WiX 3.7 installed correctly once that little other MSI was around. Thanks! Now I have a question about the ExitCode element. The documentation says about its Value attribute: "Exit code returned from executable package. If no value is provided it means all values not exp

Re: [WiX-users] offline install

2013-09-10 Thread Keith.Douglas
I get a failed install with the ProjectAggregator you mentioned: [1BA8:1518][2013-09-10T12:24:12]w343: Prompt for source of package: ProjectAggregator2, payload: ProjectAggregator2, path: G:\WixLayout\ProjectAggregator2.msi [1BA8:1518][2013-09-10T12:24:12]i338: Acquiring package: ProjectAggregat

Re: [WiX-users] Installation Failure

2013-09-10 Thread Marc Beaudry
Hello All, Figured it out. I have many versions of VS installed, from VS2005 - VS2012. >From the log the aggregate file is used for VS2005, uninstalled VS2005 and Wix now installs. Thanks Marc -Original Message- From: Marc Beaudry [mailto:mbeau...@mtrx.com] Sent: September-10-2013 10:

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread Phil Wilson
You can't install the same MSI twice, but it looks like you need your MSI organized into two features, one for each driver. At install time the user can chose to install one or both drivers. When they go into maintenance mode (by running the same MSI or from Programs/Features) it will show the inst

Re: [WiX-users] Service Install Password not sent correctly to Windows Service

2013-09-10 Thread Phill Hogland
The issue is really a separate issue from Installing the Service. Before an account is specified for a Windows Service to use, the Local Security Policy\Local Policies\User Rights Assignment, for that account, needs to allow the 'Logon as Service' permission (or if the service is designed to do a

Re: [WiX-users] ExitCode element

2013-09-10 Thread Rob Mensching
By default exit codes as returned by MSI are respected since they most common. On Tue, Sep 10, 2013 at 11:31 AM, wrote: > Hi everyone, I did get WiX 3.7 installed correctly once that little other > MSI was around. Thanks! > > Now I have a question about the ExitCode element. The documentation s

Re: [WiX-users] offline install

2013-09-10 Thread Rob Mensching
That's because http://wixtoolset.org suffered catastrophic hardware failure. It's taking them days to try to recover all the data. You can find ProjectAggregator2.msi in the repository at: src\Votive\SDK\Redist and put it next to the wix37.exe. That is what /layout would do... if the website would

Re: [WiX-users] Installation Failure

2013-09-10 Thread Marc Beaudry
Ok thanks... -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: September-10-2013 1:14 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Installation Failure The core issue is that the Wix 3.7 tries to download that package from the web site and the w

Re: [WiX-users] Slow Installs

2013-09-10 Thread Dexter
In order to bring closure I thought I would post my resolution. I was able to 'fix' the issue by installing as another user on the system. Same machine, same install, same running apps, just a different logged on user...guessing a messed up registry but I cannot say for sure. Thank you, Dex --

Re: [WiX-users] Service Install Password not sent correctly to Windows Service

2013-09-10 Thread Blair Murri
IIRC you don't need to pass the password to the util:User element when CreateUser is "no". > Date: Tue, 10 Sep 2013 13:47:39 -0700 > From: d8x...@hotmail.com > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Service Install Password not sent correctly to > Windows Service >

Re: [WiX-users] Service Install Password not sent correctly to Windows Service

2013-09-10 Thread Dexter
Use the User Element from the Util Extension to grant the user LogonAsService permission. If you only want to grant permission to an existing user the section would look something like this: -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Service

Re: [WiX-users] offline install

2013-09-10 Thread Rob Mensching
The wix37.exe is essentially self-contained (except for ProjectAggregator2.msi which is only needed for VS2005). It doesn't use the wix37-binaries.zip. What exactly is the issue you are having? On Tue, Sep 10, 2013 at 9:02 AM, wrote: > How exactly does one use offline install mode in WiX 3.7 ?

[WiX-users] offline install

2013-09-10 Thread Keith.Douglas
How exactly does one use offline install mode in WiX 3.7 ? I have the binaries package and the 20 meg .exe but it doesn't seem to find the binaries if they are loose in the directory. (/layout doesn't work for me on my public net machine due to web proxies or the like in the way.) Keith Dougl

[WiX-users] Service Install Password not sent correctly to Windows Service

2013-09-10 Thread Swaroop Kare
Hi, I am trying to install a service as below After the installatio

Re: [WiX-users] Installation Failure

2013-09-10 Thread Phill Hogland
The core issue is that the Wix 3.7 tries to download that package from the web site and the web site is down at this time. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Installation-Failure-tp7588876p757.html Sent from the wix-users mailing l

[WiX-users] Installation Failure

2013-09-10 Thread Marc Beaudry
Hello All, I can't figure this one out... I need guidance I have several systems with Wix 3.7 installed, but one system, only one system won't let me install Wix 3.7 Here is the error from the log. It seems the 'http://wixtoolset.org"; website is no longer in service or is down. The end

Re: [WiX-users] WiX 3.6: How to populdate a Combobox based on the value another Combobox on the same dialogbox?

2013-09-10 Thread Wang, Miaohsi
Thank you, Blair. - Miaohsi -Original Message- From: Blair Murri [mailto:os...@live.com] Sent: Monday, September 09, 2013 8:07 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.6: How to populdate a Combobox based on the value another Combobox on

Re: [WiX-users] BAFunction.DLL access to m_pEngineState m_command.wzCommandLine

2013-09-10 Thread Phill Hogland
I will plan to add the Feature request. The wix.codeplex.com 'bug' link is not responding so I will check back again later to do that. In the mean time I plan to have the 'parent' process set a registry key and then read that in the BAFunction.DLL. I really appreciate the BAFunction.DLL as I hav

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread John Cooper
Instance transforms. But I'm not sure that's what you really want, and the support for it is rather shaky. -- John Merryweather Cooper Build & Install Engineer -- ESA Jack Henry & Associates, Inc.(r) Shawnee Mission, KS 66227 Office: 913-341-3434 x791011 jocoo...@jackhenry.com www.jackhenry.co

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread dileep s
Is there any way to install the same MSI twice? On Tue, Sep 10, 2013 at 5:25 PM, David Watson wrote: > You don't. > > You have to change the maintenance mode UI to be what you want. > > -Original Message- > From: dileep s [mailto:dileep.sanamp...@gmail.com] > Sent: 10 September 2013 12:

Re: [WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread David Watson
You don't. You have to change the maintenance mode UI to be what you want. -Original Message- From: dileep s [mailto:dileep.sanamp...@gmail.com] Sent: 10 September 2013 12:44 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] [WIX] How to installing same MSI f

[WiX-users] [WIX] How to installing same MSI file twice

2013-09-10 Thread dileep s
Hi All, I have created MSI using WIX for installing printer driver. When I installed MSI first time, it was installed the printer driver correctly. When I want to install the other printer driver using same MSI file, it shows Maintenance mode UI. How to show the Installation UI dialogs instead