Re: [WiX-users] C++ Custom Action Dialogs

2012-08-10 Thread Phil Wilson
IMO it's better to do this as part of the first run of the app, as somebody mentioned already. After all, the key is to USE the software, not install it, right? Calling UI custom actions from an install is tricky. It's less tricky in the UI sequence, but why bother when you can use an MSI dialog?

Re: [WiX-users] C++ Custom Action Dialogs

2012-08-10 Thread Bruce Cran
On 10/08/2012 15:47, Peter Shirtcliffe wrote: > If a MSI dialog is not sufficiently flexible for your needs then you would > use an external UI. And if you do use an external UI remember about Server Core which has limited GUI functionality. -- Bruce Cran --

Re: [WiX-users] Update value of newVersion

2012-08-10 Thread DBartmess
How did you fix it? It would be useful to have that information. -- David Bartmess Configuration Management dbartm...@tsys.com Work: 303-216-3918 Cell: 303-883-9117 From: "Rohit Sharma (AIDC)" To: General discussion for Windows Installer XML toolset.

[WiX-users] Burn - multiple PackageGroupRef in Chain - download issues

2012-08-10 Thread Adrian Gantoi
Hi all, I have a question on using burn for a multi package install with full download. I have a chain of packages like below:                         Each PackageGroup consists of a MSI and it's payloads. All have the DownloadUrl data set - I deliver only the exe which should download

Re: [WiX-users] C++ Custom Action Dialogs

2012-08-10 Thread Peter Shirtcliffe
The question of dialogs in custom actions has come up in the past and the advice from the people in the know is to use MSI UI to do the GUI parts so that UI fits in properly with the rest of the system. The UI can pass the data input to a later CA or call doAction CAs itself e.g. the dialog will re

Re: [WiX-users] C++ Custom Action Dialogs

2012-08-10 Thread Hoover, Jacob
If I had to guess you need to use a combination of AfxGetStaticModuleState (http://msdn.microsoft.com/en-us/library/cc6feexs(v=vs.80).aspx) , AfxSetResourceHandle ( http://msdn.microsoft.com/en-us/library/d8ws31ff%28VS.80%29.aspx) and AfxGetResourceHandle (http://msdn.microsoft.com/en-US/libr

[WiX-users] [Burn] Start IIS Manager after installation

2012-08-10 Thread Henning Krause
I have created a managed bootstrapper using burn. At the end of the installation I want to provide the user with the option to start the IIS manager. For that I have a link on my UI. Problem 1: If I just call Process.Start(@"%windir%\system32\inetsrv\InetMgr.exe"), it fails because it cannot f

Re: [WiX-users] How to harvest a directory and create msi

2012-08-10 Thread Peter Shirtcliffe
Heat is specifically intended for this and is the best way. You'd be better off trying to solve your errors than trying to find another approach which will work less well. This is an example command line that we use "%WIX%\bin\heat" dir "" -nologo -suid -srd -sfrag -ag -wx -dr "INSTALLDIR" -var

Re: [WiX-users] C++ Custom Action Dialogs

2012-08-10 Thread Natalie Carr
Hi, Do you mean to add a WIX dialog for the key in the MSI? Do you know of any tutorials to help me with this as I'm getting "Debug Assertion Failed" on: ASSERT(m_lpszTemplateName != NULL || m_hDialogTemplate != NULL || m_lpDialogTemplate != NULL); Thanks Natalie -Origina

[WiX-users] How to harvest a directory and create msi

2012-08-10 Thread Francis Louis
Hi, I am new to Wix. I wanted to harvest a directory and based on the wxs file created need to create an MSI using candle and light. Could someone please let me know how to do it? I have tried using the Heat, candle and light to do it. But I have not had much success due to various compilati

Re: [WiX-users] Burn: WixStdBA crashes wih Access violation

2012-08-10 Thread Henning Krause
Hi Bob, thanks for the quick resolution of the issue. Kind regards, Henning > -Original Message- > From: Bob Arnson [mailto:b...@joyofsetup.com] > Sent: Thursday, August 09, 2012 11:04 PM > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Burn: WixStdBA crashes wih Access v