[WiX-users] dot Net Custom actions

2007-04-06 Thread Igor Lemsky
I need to launch some .net code during installation. Which possibilities do I have? As I hear there are problems with .net custom actions in Windows Installer. So I cant add my .net assembly exe into the product as file or binary stream and use one of the custom actions types to launch it? Only

[WiX-users] こんにちは(^^ ♪

2007-04-06 Thread 美樹
はじめまして美樹です。 掲示板で見て趣味合うかなって思ってメールしちゃいました。 イキナリでゴメンなさいm(__)m こういう感じで知り合えるのに憧れてて初挑戦しちゃいました。 お返事もらえたら簡単な自己紹介しますネ(^_-)-☆ もしそんな気なかったらそう言ってもらえれば諦めますので。 もちろん仲良くなれた方が嬉しいけど。 お返事気長に待ってま〜す(^_^)/~ http://www.star-lightz.com/m-box -

Re: [WiX-users] dot Net Custom actions

2007-04-06 Thread Nitin Chaudhari
You can run dot net code during installation, although there are some reason why you should not. I have been executing .net code in my installation for quite a while now Anyways here how to do it : Include the following Binary Id=InstallUtil SourceFile=$(env.windir

[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

[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

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

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] 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://boB

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

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] 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 wix-users@lists.sourceforge.net Sent: Friday, April 06, 2007 6:13 AM Subject: [WiX-users] dot Net

[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

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

[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 this way?

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

[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

[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

[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

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

[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

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 John Vottero
I would use the WiX ServiceInstall. 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;

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

[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