Re: [WiX-users] Two products from one MSI

2006-09-20 Thread Jonas Jonsson L (AL/EAB)
Yes. Check out http://www.tramontana.co.hu/wix/lesson3.php and then start experimenting.  You must schedule (if You do the installations as CustomActions) the installations into the . You can include several msi-files into one huge msi-file, and then run them, one by one via standard CustomA

Re: [WiX-users] prerequisite download from WiX!!!

2006-09-20 Thread Albert van Peppen
  For this you'll need a bootstrapper.   A bootstrapper is an application (SETUP.EXE most likely) which tests your prerequisites and performs action on that (install them or just give a message) and then starts the actual MSI installation.   Several bootstrappers can be found on the internet,

[WiX-users] how to refer embedded file in the File element?

2006-09-20 Thread Anirban Basu
Hi All, I have a file that is embedded in the msi.   I want to copy the file in my install location. What should be the syntax in the File element to specify that it is a embedded binary. E.g. I have a file sbc.dll embedded in the msi.

[WiX-users] How to create single installable exe

2006-09-20 Thread vij
Hi,   I have multiple msi packages created using WiX, a bootstrapper setup.exe and settings.ini (settings.ini contains some configuration information used by setup.exe) . How can I package these files (msi packages + setup.exe + settings.ini + some other resources) as a single installable execu

Re: [WiX-users] how to refer embedded file in the File element?

2006-09-20 Thread Mike Dimmick
Embedded binaries are only for items that you aren't installing, such as custom action DLLs and graphics used in the UI. Everything else should go in the (possibly embedded) CAB or as a loose file.   If trying to invoke a custom action from a DLL you're installing, you should use the FileKey

Re: [WiX-users] How to create single installable exe

2006-09-20 Thread Albert van Peppen
You might want to use a self extracting zip and a modified SFX (use SFXMake for instance) so the setup.exe is started automatically after extracting the selfextracting zip :)   Regards,   Albert van Peppen Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens vijVerzonden: woensdag 20 se

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Jeff MacDuff
Any one see any issues with my syntax here?   I have the ID set to the upgrade ID of the previous MSI pack… again this is working in English but not in any other lang.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff MacDuff Sent: Tuesday, September 19, 2006

Re: [WiX-users] small and minor update problems

2006-09-20 Thread Rob Hamflett
Alexander Gnauck wrote: > When i try to update my application then the update copies all new > files, but it doesn't replace all exe or dll files which changed. Did you change the version number of these files? Rob - Take S

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Stefan Pavlik
Hi, After reading the MSDN and Wix help (at the end of my email) I think that you can ommit the ExcludeLanguages attribute since you do not use the Language attribute. Anyway I think it should work as you want. Try to check the resulting MSI file with ORCA (or any other viewer) and look at the Upg

Re: [WiX-users] How to create single installable exe

2006-09-20 Thread Arnette, Bill
You can create a self-extracting executable with something like WinZipSE. I have been using a free self-extacting executable creator called Zip2SecureExe [1].   You can also use IExpress which ships with Windows XP.  Just type IExpress in the Start->Run... box and follow the wizard.   [1] ht

Re: [WiX-users] Using BrowseDlg Twice

2006-09-20 Thread Douglas Watts
Thanks Mike.  I’m still struggling.  I am installing a Win Service (no UI) so I was thinking that I need to offer the user the opportunity to specify the data directory during installation.  The nature of the application is that the data path cannot easily be changed once installed.   I l

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Mike Dimmick
Were all of your previous MSIs issued with the same UpgradeCode?   If not, I think you need one element per UpgradeCode.   -- Mike Dimmick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff MacDuffSent: 20 September 2006 14:11To: wix-users@lists.sourceforge.netSubject:

[WiX-users] unsubscribe

2006-09-20 Thread Wolfgang Landsberger
[EMAIL PROTECTED] schrieb: > Send WiX-users mailing list submissions to > wix-users@lists.sourceforge.net > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/wix-users > or, via email, send a message with subject or body 'help' to

[WiX-users] Installing extension for firefox

2006-09-20 Thread vbtricks
Salut, I'm trying to install a self-written plugin for firefox using wix. What I have to do is basically read out the folder, firefox is installed to from the registry: HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\2.0b2 (en-US)\Main field: Install Directory and then copy the extension to

[WiX-users] Your EasyLink and Online Bill Pay services are about to expire.

2006-09-20 Thread America\\'s
Title: [EMAIL PROTECTED] and Online Bill Payer Deactivation ... Dear Member, This is your official notification from America's First Federal Credit Union that the service(s) listed below will be deactivated and deleted if not renewed immediately. Previous not

Re: [WiX-users] Installing extension for firefox

2006-09-20 Thread Rob Hamflett
You should be able to write the value obtained to a directory ID like you would for a property. All sub-directories will get updated as well. You might need the ID name to be in uppercase. Rob vbtricks wrote: > Salut, > > I'm trying to install a self-written plugin for firefox using wix. Wh

Re: [WiX-users] Installing extension for firefox

2006-09-20 Thread John Ludlow
Something like this should do the trick:     Property>  and then have the following as a child of the Progra

Re: [WiX-users] Installing extension for firefox

2006-09-20 Thread John Ludlow
Sorry for the mangled message.. On 9/20/06, John Ludlow <[EMAIL PROTECTED]> wrote: > > > Something like this should do the trick: > > > > >'FirefoxInstallPath' Type='raw' Key='SOFTWARE\Mozilla\Mozilla Firefox\2.0b2 > (en-US)\Main '/> > > and then have the following as a child of the Progr

[WiX-users] Order of Menu Items

2006-09-20 Thread Charlie Poole
Hi All, Is there any way to control the display order of shortcuts under the programs folder? Charlie - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to

Re: [WiX-users] Shortcut to a URL target?

2006-09-20 Thread Neil Sleightholm
I think you need something like this:           " />     Neil From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank HsuehSent: 18 September 2006 21:58To: wix-users@lists.sourceforge.netSubject: [WiX-users] Shortcut to a URL target? WIX-Users,   I

Re: [WiX-users] Shortcut problem, and a few other notes

2006-09-20 Thread Neil Sleightholm
But if you do this do you find you have to supply an icon or the shortcut does have one until you click it once? This is what I found I it didn't make sense to supply an icon to me (it was a shortcut to an chm file).   Neil From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beha

Re: [WiX-users] Petition to upgrade source repository to subversion

2006-09-20 Thread Neil Sleightholm
I would second that.   Neil From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul WelterSent: 19 September 2006 18:33To: wix-users@lists.sourceforge.net; wix-devsSubject: [WiX-users] Petition to upgrade source repository to subversion Hi,I've been using WiX f

[WiX-users] heat cannot find MSVCR80.dll

2006-09-20 Thread Steven Chin
Visual Studio 2005 Released version 8.0.50727.42 creates output DLLs with a manifest that says it depends upon     Thus, heat can never find the MSVCR80.DLL version on the machine.  Is there a way to make heat ignore the version dependency so as to take the latest version which is

Re: [WiX-users] heat cannot find MSVCR80.dll

2006-09-20 Thread Tony Hoyle
Steven Chin wrote: > Visual Studio 2005 Released version 8.0.50727.42 creates output DLLs > with a manifest that says it depends upon > >version="8.0.50608.0" > > Does version="*" work? Even better would be version="8.0.*.*" but I suspect that's unlikely. Tony ---

[WiX-users] Directory element and Property

2006-09-20 Thread Douglas Watts
WIX Version: 2.0.4415.0 Problem Summary: How to use properties with Directory elements   Sorry for the newbie questions…but I’m learning.   I use the BrowseDlg from the WiXUI library to get a data directory from the user.  I store the user’s selection in a property.  Now I need to cr

Re: [WiX-users] Directory element and Property

2006-09-20 Thread Bob Arnson
Douglas Watts wrote: I use the BrowseDlg from the WiXUI library to get a data directory from the user.  I store the user’s selection in a property.  Now I need to create the directory using this property.  I have tried the following WiX code but when I run the MSI I immediatel

Re: [WiX-users] Order of Menu Items

2006-09-20 Thread Bob Arnson
Charlie Poole wrote: > Is there any way to control the display order of shortcuts under > the programs folder? > > No. They're just .lnk files in a directory, so there's no way to sort them on install. The shell doesn't expose an API for the UI re-ordering it supports. -- sig://boB http://b

Re: [WiX-users] Using BrowseDlg Twice

2006-09-20 Thread Bob Arnson
Douglas Watts wrote: I looked at the UI library source.  I noticed that the WixU InstallDirDlg and the CustomizeDlg both use the PathEdit control and a browse button to display the BrowseDlg.  I figured I could create a DataDirDlg that did the same thing.  Unfortunately, I just

[WiX-users] Question about additional translations

2006-09-20 Thread Jim Hewes
I've been working to convert our current InstallShield installer to WiX 2.0 and everything's working fine. But the thing that's actually preventing me from switching is that I need five languages for the GUI: English, French, Spanish, Italian, and German. Currently French and Italian are not availa

[WiX-users] New features in 3.0 vs. 2.0?

2006-09-20 Thread Lorne Laliberte
Hello, Is there a list of the differences between 2.0 and 3.0 available anywhere? >From quickly comparing the .chm files and searching the list archive I've come up with these new features in 3.0. Am I correct? What features have I missed? :) - Auto-generation of short file and directory names -

Re: [WiX-users] Directory element and Property

2006-09-20 Thread Douglas Watts
Thanks Bob.  However, we need to allow the user to specify the directory, including the drive.  I can’t use the “CommonAppDataFolder”; at least, not beyond using it as a default path.  Usually, my users will store data on a different drive.  I need to create the data directory and set speci

Re: [WiX-users] Order of Menu Items

2006-09-20 Thread Charlie Poole
> -Original Message- > From: Bob Arnson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 20, 2006 12:18 PM > To: Charlie Poole > Cc: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Order of Menu Items > > Charlie Poole wrote: > > Is there any way to control the display

Re: [WiX-users] Order of Menu Items

2006-09-20 Thread Tony Hoyle
Charlie Poole wrote: > For better testing, I'd like to know where that is and > clear it out periodically. Any ideas? HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder I don't believe it's documented what's in that key though so deleting it might not be a good idea

Re: [WiX-users] Question about additional translations

2006-09-20 Thread Bob Arnson
Jim Hewes wrote: > I realize that it's a volunteer effort. So I think that means that the > translations may happen next week, or they may never happen at all, true? Correct. > I > guess my question is: what hope do I have? Is there a definite expectation > for more languages to be done? > Gabo

Re: [WiX-users] How to create single installable exe

2006-09-20 Thread Alexei Boukirev
Hello vij, You already have the tool if you have IE6 installed: iexpress.exe It's part of IEAK (Internet Explorer Administration Kit). Run it once, go through wizard, let it create *.sed file. Edit .sed file to change file paths to relative if necessary. Now you can build a self-extracting CAB

Re: [WiX-users] Order of Menu Items

2006-09-20 Thread Charlie Poole
Hi Tony, > > For better testing, I'd like to know where that is and clear it out > > periodically. Any ideas? > > HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ex > plorer\MenuOrder > > I don't believe it's documented what's in that key though so > deleting it might not be a goo

[WiX-users] failure in custom action.

2006-09-20 Thread Sean Wang (MSN)
Hi,   I hope this is the right alias for my questions. If not, please kindly forward of you know any place proper.   After moving to wix2.0. some of the custom actions we used before began to fail. Manually running the action in command line works just fine, but the msi fails with erro

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Jeff MacDuff
Ok thanks for the tips.. I will review the codes again and take a look.   From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 20, 2006 7:03 AM To: Jeff MacDuff; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Quick question on upgrade checking   W

Re: [WiX-users] Quick question on upgrade checking

2006-09-20 Thread Jeff MacDuff
It's still not working for me... here's what I did: I looked at the new msi ( the one we are building now ) and in the upgrade table it has a upgrade code. I then looked at the old MSI in orca, and in it's property table it has the exact same GUIDS for it's upgrade code. Is there any execection

[WiX-users] Prompting for multiple db connections

2006-09-20 Thread sleclerc
My application contains a "config" file that contains a set of database connection strings. In my application, I loop through all of those databases, connect using the connection strings stored in the "config" file and perform certain actions. I need a way to prompt the user to define an unlimit

[WiX-users] HRESULT: 0x80131047

2006-09-20 Thread スー エンリン
I wrote a class library in C# (ClsLibTest.dll). And there is a Windows Application (DLLWix.exe) that uses the ClsLibTest.dll. Everything is installed perfectly if I use Visual Studio 2005 Setup project to create the *.msi file. The problem is I couldn't get the *.msi run by using WIX. The followi

Re: [WiX-users] Question about additional translations

2006-09-20 Thread Jim Hewes
Thanks for the reply. I probably should have mentioned that I had seen the localization project web page. I noticed that French has been finished for a while. Anyway, I'll do what I can. (Sorry, if this gets sent twice. I always get some sort of error the first time I send...something about my do

[WiX-users] rename registry keys

2006-09-20 Thread Adam Clay
I have a question, about changing versions and upgrading, in previos versions, i have made a registry key "HKEYLOCALMACHINE\...\version 2.0", but now in an update, i would like to change this to 2.0.1 though it seems that it only creates a new one, and changes the existing one. This also applys

[WiX-users] Message Queue Help Needed

2006-09-20 Thread Emma Hanna
Title: Message Queue Help Needed Hi Everyone I am using the following code to create a Message Queue. It works fine when installed to the local machine (i.e. when AUDITQUEUESERVER is set to local machine name or ‘.’) but when I try to install to another machine name it fails. Can anyone give

Re: [WiX-users] [Bug #1498645 ] Configure IIS error on2.0.4126(Verbose Output)

2006-09-20 Thread Emma Hanna
Hi David Did you ever solve this problem? I am having the same issue and really need some help... Thanks Emma. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of david adams Sent: Friday, 1 September 2006 10:37 PM To: wix-users@lists.sourceforge.net Subject