[WiX-users] User data with per-machine installation

2007-06-27 Thread Cosmin Manoliu
Hello all, I have to install data files which must be accessible (read/write) by all users on that machine. I am doing a per-machine installation. My question is where is correct to install the data: 1) CommonAppDataFolder If I install the data here all users will use the same data. For this re

[WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread shambhu kumar
hi i tried to compile the wxs file generated after the the decompilation of msi generated by using Install shield. but errors related to schema occured. i have no idea how to resolve this error. plz tell me the sollution or tell me wether it is possible to do that i tried. -

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Rob Hamflett
Did you decompile it using dark? Dark isn't intended as a proper decompiler, and the WiX guys have always said that you won't necessarily be able to decompile something with dark and get candle/light to build the result. It's intended to give you a starting point, or so that you can see how

Re: [WiX-users] Conditions for setup in GUI and without GUI?

2007-06-27 Thread Mailinglist
Hi, Thank you for your hints, but this just doesn't work correctly. I do not need to create custom errors, if statements do the same. So the helpful thoughts are in the lower part of your mail. That however does not work. If I set the UI_RAN property, the condition only fails if the NOT_W

Re: [WiX-users] Conditions for setup in GUI and without GUI?

2007-06-27 Thread Rob Hamflett
You've set suppress="yes", which means the event doesn't occur. Rob Mailinglist wrote: > Hi, > > > > Thank you for your hints, but this just doesn't work correctly. > > > > I do not need to create custom errors, if statements do the > same. So the helpful thoughts are in the lower part

Re: [WiX-users] Conditions for setup in GUI and without GUI?

2007-06-27 Thread Mailinglist
Hi Rob, >You've set suppress="yes", which means the event doesn't occur. Last compile I tried the following: NOT (GUI="1") And it did not work either, it fails with the specified message of the condition. Maybe it is a bug? Oliver Friedrich Consultant - Software Solutions -O

Re: [WiX-users] Shortcuts and components

2007-06-27 Thread Ward, Mike (MED US)
Wendell, Thanks for your reply. The reason it surprised me is that the WiX didn't complain. I had a clean compile and link. Perhaps this shows up when using an install verifier? Regards, - Mike -Original Message- From: Wendell Joost [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26, 20

[WiX-users] Other Tools

2007-06-27 Thread Ward, Mike (MED US)
I see some interesting programs in the bin folder of WiX like pyro, melt and setupbld. There doesn't seem to be much information about what these programs do. Or is there? SIEMENS Image & Knowledge Management Michael Ward Siemens Medical Solutions 400 W. Morgan Road Ann Arbor, MI 48

[WiX-users] Mark component or feature as mandatory

2007-06-27 Thread Ramon Smits
I would like to mark a feature as mandatory but I cannot find how to do this. There is probably a way to influence the installation options for a feature. It would be logical that the user would only have the option "Will be installed on local hard drive" for mandatory features. I could probably

Re: [WiX-users] Conditions for setup in GUI and without GUI?

2007-06-27 Thread Mailinglist
Hi Wix-users, Solved the problem, easier than thought. To disable LaunchConditions in UI Mode simply add the following: Important, must be in so that the LaunchConditions are run if the msi is executed quiet. Thx for all hints. Oliver Friedrich -

Re: [WiX-users] Conditions for setup in GUI and without GUI?

2007-06-27 Thread Rob Hamflett
Just a sanity check. In your last message you said you were setting a UI_RAN property, but in your examples you're checking against a GUI property. You are setting and using the same property, right? Rob Mailinglist wrote: > Hi Rob, > >> You've set suppress="yes", which means the event does

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Christopher Painter
Funny, Rob introduced WiX to the world with the statement: "Finally, the decompiler, called dark, can take existing MSI and MSM files and generate XML source code that represents the package." The reality is dark doesn't come anywhere close to actually representing the original packag

[WiX-users] link time error: index was outside the bounds of the array

2007-06-27 Thread shambhu kumar
hi i compiled the attached wxs file and got attached wixobj file. but when i tried to link attached wixobj file i got the above error and i m not able to resolve it. http://www.nabble.com/file/p11324638/project4.wixobj project4.wixobj http://www.nabble.com/file/p11324638/project4.wxs project4.wx

Re: [WiX-users] Conditions for setup in GUI and without GUI?

2007-06-27 Thread Mailinglist
Hi Rob, yes I was using throughout my code the "GUI" property, but referenced in my mail your UI_RAN property. Oliver Friedrich -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Hamflett Sent: Mittwoch, 27. Juni 2007 14:20 To: wix-users@lists.sourc

Re: [WiX-users] Mark component or feature as mandatory

2007-06-27 Thread Rob Hamflett
You probably want [EMAIL PROTECTED]"disallow". Rob Ramon Smits wrote: > I would like to mark a feature as mandatory but I cannot find how to do this. > > There is probably a way to influence the installation options for a feature. > It would be logical that the user would only have the option "W

Re: [WiX-users] Mark component or feature as mandatory

2007-06-27 Thread Ramon Smits
Rob Hamflett wrote: > > You probably want [EMAIL PROTECTED]"disallow". > Yes! Exactly what I was looking for. Thanks! Ramon -- View this message in context: http://www.nabble.com/Mark-component-or-feature-as-mandatory-tf3988157.html#a11325279 Sent from the wix-users mailing list archive a

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Bob Arnson
shambhu kumar wrote: > i tried to compile the wxs file generated after the the decompilation of msi > generated by using Install shield. > but errors related to schema occured. > Many versions of InstallShield apparently write invalid _Validation tables that cause problems with Dark. I'd sugge

Re: [WiX-users] How do I submit code? Do you want my changes?

2007-06-27 Thread Bob Arnson
Neil Sleightholm wrote: Bob, Thanks for your reply but it doesn't really answer my question. Then to answer it directly: Yes, we do. Submitting code and not hearing anything for 6 weeks is a bit demoralising. Virtually every day on this list someone writes a comment along the lines of "if

Re: [WiX-users] Other Tools

2007-06-27 Thread Bob Arnson
Ward, Mike (MED US) wrote: I see some interesting programs in the bin folder of WiX like pyro, melt and setupbld. There doesn't seem to be much information about what these programs do. Or is there? Some are documented in wix.chm, some are documented in blogs, some are only documented in the

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Schrieken, Rene
Dark probably does what Rob M. claims, it represents the package. That you rather have it represented differently is either a question of taste or a lack of time of the maintainer of dark. That you cannot recompile a darked wxs to a working package is a good sign. It means that the compiler and lin

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Christopher Painter
The _Validation table doesn't have any real purpose in terms of declaring setup logic. It would probably be better if Dark just ignored it since Candle/Light will generate a new _Validation table based on the new generated schema. To blame InstallShield seems suspicious to me. Eitherway I'v

[WiX-users] Environment Variable in Include path

2007-06-27 Thread Mark.Farmer
Does anyone know the best way to have an include path with a variable. I keep getting a file not found error. Any assistance is greatly appreciated. ~mark - This SF.net email is sponsored by DB2 Express Download DB2 Express

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Christopher Painter
No, it just means that the compiler and linker *thinks* it's smarter then I am and it isn't. WiX is just more pedantic and ultimatly useless since it constrains flexibilty under the guise of protecting me from myself. "Schrieken, Rene" <[EMAIL PROTECTED]> wrote: v\:* {behavior:url

Re: [WiX-users] Environment Variable in Include path

2007-06-27 Thread Mark.Farmer
sorry.here's what I'm trying. environment variable SOURCE=c:\source\ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 9:48 AM To: wix-users@lists.sourceforge.net

[WiX-users] Sql action dependency to merge module

2007-06-27 Thread Klimek Manuel
Hi, I've got a merge module that installs mysql and a different merge module that contains my application and uses SqlDatabase to create a database on installation. The problem is that in the resulting msi the action to start the mysql service is scheduled after the creation of the database. Thus

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Bob Arnson
Christopher Painter wrote: > The _Validation table doesn't have any real purpose in terms of > declaring setup logic. It would probably be better if Dark just > ignored it since Candle/Light will generate a new _Validation table > based on the new generated schema. To blame InstallShield seems

Re: [WiX-users] Environment Variable in Include path

2007-06-27 Thread Bob Arnson
[EMAIL PROTECTED] wrote: Preprocessor syntax for environment variables in $(env.variableName). I don't know if the preprocessor preprocesses its own statements, though; you might need to pass the variables in via Candle's -I switch. -- sig://boB http://joyofsetup.com/ --

[WiX-users] Multiple MSI's

2007-06-27 Thread Brent Schmaltz
I am looking to create an MSI package that has modes of installation. An SDK that has a runtime, assorted samples and documents. I also have an application that will install just the runtime. I am trying to understand do I: 1. Have two MSI one that just installs the runtime so apps can w

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Christopher Painter
First off, I see no evidence to support your claim about an invalid _Validation table being generated by InstallShield. I perform validation on my packages and I've never seen an invalid _Validation table. Considering Dark has to decompile packages generated by many tools, it would be great i

[WiX-users] [wix-users] Mergemodule questions

2007-06-27 Thread Mailinglist
Hi, more to do, more problems show up... 1. Setting property in merged module at runtime. In the setup I use a merge module, where a custom action is triggered via a property. This property shall be entered to the setup as a command line switch like: [code] msiexec.exe /I setup.msi NOEXESTART

[WiX-users] Custom Service Registration Dialog - ComboBox type control

2007-06-27 Thread Steve Baker
hi all, i am writing a wix install which will register a service. i have used wix for a while but never had to register a service with it. I have the ServiceInstall element all setup and am using public properties for the user name and password. I would like to put a GUI on top of this so the

Re: [WiX-users] How do I submit code? Do you want my changes?

2007-06-27 Thread Neil Sleightholm
So would submitting code in the bug report be the best option? Neil From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 27 June 2007 15:37 To: Neil Sleightholm Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How do I submit code? Do you want my changes? Neil Sleightholm wrote

Re: [WiX-users] Custom Service Registration Dialog - ComboBox type control

2007-06-27 Thread Pierson Lee (Volt)
I created a custom dialog box. Its along the lines of a another dialog box (copy one from the WixUI) and just add a username and password field and two properties, one to hold each one. If you're still having problems with this, let me know (I'm actually working on a password checker right now

[WiX-users] ICE60

2007-06-27 Thread Ken
When trying to create an install. One directory it creates consists of local fonts (fonts not available publicly, directory only contains those TTF files), I keep getting an ICE60 at compile time: "The file fontname.ttf is not a Font, and its version is not a companion file reference. It should

Re: [WiX-users] Sql action dependency to merge module

2007-06-27 Thread Mike Dimmick
The SqlDatabase actions are 100% for Microsoft SQL Server only. They won't help you for MySql. In general you can override where an action executes simply by listing it in the appropriate XxxSequence element and specifying Before, After, or an explicit schedule number. -- Mike Dimmick -Orig

[WiX-users] Property comparisons

2007-06-27 Thread Pierson Lee (Volt)
I'm trying to compare two properties together (does property A = Property B?) and it doesn't' seem to be working. The application is for me to verify that a password and a confirm password that they type in are the same before continuing on the dialog. WEBSERVICE_PASSWORD = WEBSERVICE

[WiX-users] QTExec and WixUtilExtension

2007-06-27 Thread koawmfot
The infor below was posted on the mail list: Re: [WiX-users] WiX 3.0 wixca.dll QtExec Erlichmen, Shay Wed, 21 Feb 2007 03:51:59 -0800 There is a documentation mistake in WiX3 chm, you need to replace the Id="wixca" with Id="WixCA and remove the Binary element. Then you will need to add WixUtilE

Re: [WiX-users] Property comparisons

2007-06-27 Thread Pierson Lee (Volt)
Ignore this. I found my problem. I don't need the not-equal comparison. Thanks From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pierson Lee (Volt) Sent: Wednesday, June 27, 2007 12:18 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Property comparisons I'm trying to co

[WiX-users] ICE57

2007-06-27 Thread Jason J. W. Williams
Hello, I'm a bit befuddled and could use some help if anyone is willing. I keep getting an ICE57 for one of my components, I think its because I set an HKCU KeyPath but have a shortcut created in ProgramMenuDir. Any pointers to resolving this are greatly appreciated. Thank you in advance. Best

[WiX-users] Command line Custom action failure

2007-06-27 Thread Pierson Lee (Volt)
Hi- I'm getting this weird error when running my custom action: MSI (s) (B8:F4) [17:21:34:509]: Doing action: QtExec Action 17:21:34: QtExec. Action start 17:21:34: QtExec. MSI (s) (B8:C4) [17:21:34:509]: Invoking remote custom action. DLL: C:\WINNT\Installer\MSI547.tmp, Entrypoint: CAQuietExec

[WiX-users] Run an application while uninstall

2007-06-27 Thread Afshin Sepehri
Hi, How can I add a CustomAction to my WiX file to execute an application while my product is being uninstalled? Afshin - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express

[WiX-users] Using an OR operator in a Condition

2007-06-27 Thread Jason J. W. Williams
Hello, I've got what must be a stupid question, but I can't find a suitable answer. I only want a component to be installed if a registry entry is X or Y. If it is neither than I do not want the component to be installed. So I put the following condition in the component: (REGENTRY = "X") Or (RE

Re: [WiX-users] Multiple MSI's

2007-06-27 Thread Jason J. W. Williams
Hi Brent, Why not create a modify the SetupTypeDlg so that you have a button for "Complete" and one for "Runtime Only". Your runtime would be level 1 for example, and everything else would be level 4. If the user clicked complete everything would be installed, and if they clicked "Runtime Only" t

[WiX-users] Trimming Fat from WixUI

2007-06-27 Thread Jason J. W. Williams
Hello All, Is it possible to trim some body fat from WixUI? I've replaced the banner and dialog BMP images with custom JPEGs and that has significantly reduced the size from the custom BMPs I was using. However, it seems like WixUI adds 150K to any MSI. I was just curious if it was possible to edi

Re: [WiX-users] How do I submit code? Do you want my changes?

2007-06-27 Thread Bob Arnson
Neil Sleightholm wrote: So would submitting code in the bug report be the best option? Absolutely. Otherwise you're at the mercy of e-mail organizing abilities... -- sig://boB http://joyofsetup.com/ - This SF.net emai

Re: [WiX-users] QTExec and WixUtilExtension

2007-06-27 Thread Bob Arnson
koawmfot wrote: > c:\test\app\unify\unify.wxs(150) : error LGHT0094 : Unresolved > reference to symbol 'Binary:wixca' in section Fragment:unify_drivers'. IDs are case-sensitive so you need to use WixCA not wixca. -- sig://boB http://joyofsetup.com/ --

Re: [WiX-users] Trimming Fat from WixUI

2007-06-27 Thread Bob Arnson
Jason J. W. Williams wrote: > Is it possible to trim some body fat from WixUI? I've replaced the > banner and dialog BMP images with custom JPEGs and that has > significantly reduced the size from the custom BMPs I was using. > However, it seems like WixUI adds 150K to any MSI. I was just curious >

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Bob Arnson
Christopher Painter wrote: > First off, I see no evidence to support your claim about an invalid > _Validation table being generated by InstallShield. I perform > validation on my packages and I've never seen an invalid _Validation > table. Given that the stock ICEs rely heavily on valid dat

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-27 Thread Rob Mensching
Actually, I think that comment was made a quite a while ago. Dark has come quite a ways in WiX v3 (mostly because Derek picked up where Robert left off) and is quite good at translating most well formed MSI files into .wxs source code. There are plenty of crazy things you can do in your MSI to

[WiX-users] Framework 3.0 - how to search?

2007-06-27 Thread Igor Lemsky
In my setup program I need to check if MS .net framework 3.0 is installed in the system. But how to do it? MsiNetAssemblySupport is equal to the same value as if only framework 2.0 is installed... - This SF.net email is sponso

Re: [WiX-users] Shortcuts and components

2007-06-27 Thread Rob Mensching
Interesting. Why do you think the WiX toolset should complain? Because a shortcut with the same name is in two different Components? (I'm not being critical, just wondering what algorithm you used to say the duplicate shortcut was 'wrong' vs. 'right'). -Original Message- From: [EMAIL

Re: [WiX-users] How do I submit code? Do you want my changes?

2007-06-27 Thread Rob Mensching
Nick, Bob answered most of the questions with facts but I wanted to provide more detail/insight to what he offered. 1. The assignment agreement requirement is a pain. It's a pain on many fronts. a. In your particular case, if you were one of the few that tried to get an assignment agreement

Re: [WiX-users] Framework 3.0 - how to search?

2007-06-27 Thread Rob Mensching
In WiX v3 there is a searched Property called "NETFRAMEWORK30" in the NetFxExtension.dll. You should be able to add and add the extension to the command-line to have the check done. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor Lemsky Sent: Wednesday, June 27, 2007 11:08

Re: [WiX-users] Run an application while uninstall

2007-06-27 Thread Rob Mensching
I think conditioning the execution of the CustomAction for "REMOVE=ALL" is the best way to get what you want. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Afshin Sepehri Sent: Wednesday, June 27, 2007 5:37 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Run an applic