[WiX-users] wix questions

2007-04-06 Thread Lindsay Harris
Hello! I was wondering, is there any kind of built in computer browsers in wix? Or would this be a custom action? Also, I have another question: I am spawning a dialog from another dialog. (a popup yes/no). If the user clicks one of the buttons, I would like to not only close this dialog and

Re: [WiX-users] Installing .NET Services

2007-04-06 Thread Joe Kaplan
There is one big gotcha when comparing the ServiceInstaller class in .NET with ServiceInstall in WiX. The ServiceInstaller actually does two things: - Creates the Windows service in the Service Control Manager (SCM) - Creates an event source associated with the application event log for the se

[WiX-users] FW: merge modules

2007-04-06 Thread Thomas Svare
Hello, Please disregard the below. It helps to look at the help once in a while. Thanks, Tom From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Svare Sent: Friday, April 06, 2007 2:21 PM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Installing .NET Services

2007-04-06 Thread John Vottero
I would use the WiX . It's easier and more reliable than trying to call the Installer class. You can leave the Installer based class in the code if you want. From: Don Tasanasanta [mailto:[EMAIL PROTECTED] Sent: Friday, April 06, 2007 3:00 PM To: John Vottero; Kevin Burton; Rob Mensching; BU

Re: [WiX-users] Installing .NET Services

2007-04-06 Thread Wilson, Phil
The ServiceInstall method installs the service and is used instead of installer classes. So the question "how should the installer handle this" is a bit of a non-sequitur because you don't need installer classes if you're using ServiceInstall. Of course if your installer class code does something

Re: [WiX-users] Installing .NET Services

2007-04-06 Thread Don Tasanasanta
So what is the correct way to handle situations like this? Let's say there's a .net service that needs installing but has Installer based classes. How should the install handle this? From: John Vottero [mailto:[EMAIL PROTECTED] Sent: Thursday, April 05,

[WiX-users] merge modules

2007-04-06 Thread Thomas Svare
Hello, I'm in the process of converting our merge modules from Install Shield to Wix. Ideally, I'd like convert the main installations to Wix as well and just use fragments but time does not permit this. I'm running into the following issue: Install Shield merge modules do not append t

Re: [WiX-users] Only installing shortcuts when an "install shortcuts" feature is selected

2007-04-06 Thread Mike Poulson
Recycling bits Mike Poulson Network Engineer Tableau Software 400 North 34th Street, Suite 200 Seattle, WA 98103 206 633 3400 x.556 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Canning Sent: Friday, April 06, 2007 10:08 AM To: wix-users@lists.sourceforge.net Sub

[WiX-users] Only installing shortcuts when an "install shortcuts" feature is selected

2007-04-06 Thread Bill Canning
(Sorry about the incomplete message...) Hello, I have an interesting WiX problem: I want to be able to install a bunch of files, some of which have start menu shortcuts. The user should be able to choose the features he wants that will install these files as usual. However, I want to create

[WiX-users] Turning off CreateShortcuts by default

2007-04-06 Thread Bill Canning
Hello, I have an interesting WiX problem: I want to be able to install a bunch of files, some of which have start menu shortcuts. The user should be able to choose the features he wants that will install these files as usual. However, I want to be able to prevent the creation of shortcuts unl

[WiX-users] Data disappearing between Property and DLL

2007-04-06 Thread Thomas Bjørnsen
Hey I'm having some issues with a user-registration dialog calling a DLL File to check the inputed data. The problem is the OrganizationEdit editbox. To check I have inserted a MessageBox into my DLL to verify inputed data. What happens is the following: If I enter any data into any of the editb

Re: [WiX-users] dot Net Custom actions

2007-04-06 Thread Wilson, Phil
I was about to say the same thing. It's not all managed code custom actions that are "evil", it's really just the installer class mechanism that requires the shim Dll, loading a framework into msiexec etc etc. Functionally, a managed code exe has the same capability as an installer class (prope

[WiX-users] Not able to run Custom Action in WiX

2007-04-06 Thread Amit Thakur
Hi, I am trying to run the following command through an custom action in WiX. CScript "%MYDIR%\Install.vbs" //NoLogo "%REGROOT%" "%CODEBASE%" "%DEVENVDIR%" "%ROOTSUFFIX%" This one basically executes an VB Script file which is taking some set of input parameters. Can't we run the VB Script in t

Re: [WiX-users] wixlib and extensions and msm's

2007-04-06 Thread koawmfot
well, technically it isn't really a bug if the v2 difxapp.wixlib has different elements and schema references than it should in v3. it is really just not an ap to date wixlib. unless what you are saying is that the WixDifxAppExtension.dll contains the v2 wixlib and that is why i need to provided

[WiX-users] MSM/Merge modules conditionally on 2k/XP

2007-04-06 Thread Thomas Bjørnsen
Hi First time posting to a mailinglist so bare with me if I screw something up. I've been trying with WIX 2.0 to incorporate MSM modules into our installerpackage conditionally but alas to no use (I'm having a hard time finding any examples or anything on it). I'm trying to get the speech SDK to

Re: [WiX-users] dot Net Custom actions

2007-04-06 Thread Joe Kaplan
Also, if the CA is an EXE instead of a DLL-type CA or something, then you can launch it with an EXE CA. Joe K. - Original Message - From: "DEÁK JAHN, Gábor" <[EMAIL PROTECTED]> To: "WiX-users" Sent: Friday, April 06, 2007 6:13 AM Subject: [WiX-users] dot Net Custom actions > On Fri,

Re: [WiX-users] Trouble with MsiProcessMessage

2007-04-06 Thread Bob Arnson
Terry Burkins wrote: > can't get MsiProcessMessage to display a message box if the serial > number is invalid. If I run the install with logging, the correct > message shows up in the log. As a test, I used the same code in a > deferred custom action during the uninstall and the message box shows

Re: [WiX-users] Error in German?

2007-04-06 Thread Bob Arnson
Kevin Burton wrote: I have a Wix generated .msi file and it has been working fine for sometime now (in English). Recently when I tried to deply on a machine that was low on disk space I received an error dialog indicating that the machine had insufficient space to proceed but this error messa

Re: [WiX-users] wixlib and extensions and msm's

2007-04-06 Thread Bob Arnson
koawmfot wrote: > so my question is, is the difxapp extension just not ready yet or am i > doing something wrong? the final msi worked as it should. Correct -- DifxApp itself doesn't ship with WiX v3. There's an open bug right now that WiX v3 can't consume the WiX v2 Difx .wixlib. -- sig://bo

Re: [WiX-users] Why is it skipping my UI?

2007-04-06 Thread Bob Arnson
JCWrs wrote: > Ok, I took that out, but I get the same result...no UI. I've been trying > different things (including not having an InstallUISequence at all) the past > couple of days, but nothing seems to work. > Standard advice: Generate a verbose log; MSI records the actions and dialogs it

Re: [WiX-users] .NET Install causes Windows Error when running program.

2007-04-06 Thread Bob Arnson
Hallquist Jr, Robert wrote: Actually I found out that the problem is due to one of my files that is installed is not the correct size. The file is listed in ORCA as 204K but when it is installed, the size is 36K. I am using a Merge Module and the file that has problems is the first componen

[WiX-users] Trouble with MsiProcessMessage

2007-04-06 Thread Terry Burkins
I am new to WiX and am having a problem displaying a message box to the user from a CA in a C++ DLL. I have an MSI dialog that asks the user to enter their serial number and calls my CA when the user presses Next (Execute="immediate"). The CA is getting called and I can retrieve the serial number

[WiX-users] dot Net Custom actions

2007-04-06 Thread DE�K JAHN, G�bor
On Fri, 6 Apr 2007 13:21:35 +0700, Igor Lemsky wrote: Igor, http://www.tramontana.co.hu/wix/lesson3.php#3.5 lists the reasons while you shouldn't do it, although it is technically possible using an undocumented DLL. Bye, Gábor ---