Re: [WiX-users] FW: Help regarding Wix needed

2007-01-17 Thread Joydeep Bhattacharyya
No I am supplying certificate paths as parameter to msi at runtime. The build is independent of the path. Wix might build tables at build time, but my guess is it populates the paths based on the parameter. For my case the parameter is defined in the courier file. Thanks Joydeep From: Bob Arns

Re: [WiX-users] tallow.exe

2007-01-17 Thread Bob Arnson
Pandrea Corina wrote: > But then I try to do the same thing on other computer but there the names are > not in this compliant form and wixobj file is not created becouse of this > problem. > Tallow uses the GetShortPathNameW API function to get an 8.3 name. It's possible to disable 8.3 filen

Re: [WiX-users] FW: Help regarding Wix needed

2007-01-17 Thread Bob Arnson
Joydeep Bhattacharyya wrote: We are trying to feed in a Certificate path as a parameter to a msi. But the path has some wildcards in it which needs to be replaced at runtime. We are seeing that before we are able to perform our custom action to do this, wix creates a certificate table with th

Re: [WiX-users] Refresh on next button

2007-01-17 Thread Bob Arnson
Patrick Steele wrote: This appears to work in that I can type in numbers ( image 1 ). When I try to type in a character ( image 2 ), a popup balloon appears telling me only numbers are valid. However, when clicking the x in the balloon to close it, the radio buttons that I had on screen now s

Re: [WiX-users] DIFx prompt shows up behind UI

2007-01-17 Thread Bob Arnson
J. J. Farrell wrote: > At the moment I'm setting these SetupAPI parameters to NULL. I'm guessing > from Bob's message that I can solve this problem by passing a handle to the > Installer UI window instead of NULL. Does this sound right? I know almost > nothing about Windows UI programming, so my ma

[WiX-users] FW: Help regarding Wix needed

2007-01-17 Thread Joydeep Bhattacharyya
Hi, I need some help regarding Wix. Please forward me to the appropriate alias if this is not the right one: We are trying to feed in a Certificate path as a parameter to a msi. But the path has some wildcards in it which needs to be replaced at runtime. We are seeing that before we are able to

Re: [WiX-users] automatically launching .Net framework install if it (.Net framework) is not present

2007-01-17 Thread Rob MacFadyen
There's additional information here: http://www.wixwiki.com/index.php?title=Deploying_Additional_Components Regards, Rob - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll

Re: [WiX-users] automatically launching .Net framework install if it (.Net framework) is not present

2007-01-17 Thread John Vottero
Look up "GenerateBootstrapper Task" in the Visual Studio 2005 documentation index. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 6:59 PM To: Sotorin Cc: wix-users

Re: [WiX-users] re-sequence SQL execution

2007-01-17 Thread Don Tasanasanta
Sorry, my mistake. I got things flipped around. The sequence is working just fine the way it is. From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 4:09 PM To: Don Tasanasanta; wix-users@lists.sourceforge.net Subject: RE: [WiX-use

Re: [WiX-users] tallow.exe

2007-01-17 Thread Mike Dimmick
Tallow is intended for running _once_ to create an initial .wxs document. You should then be maintaining it manually. Generating scripts on every build will likely cause you problems with component identities, which may cause problems when trying to perform upgrades. What version of tallow are you

Re: [WiX-users] How to Specify Default HomePage

2007-01-17 Thread Mike Dimmick
Set WebVirtualDir/@DirProperties to point to a WebDirProperties element. Set the @DefaultDocuments attribute of the WebDirProperties to a comma-separated list of document names that you want to be tried, in order. 2.0.3620 is very old - 12 months older than the current build (4820) at http://sourc

Re: [WiX-users] re-sequence SQL execution

2007-01-17 Thread Rob Mensching
Why? What is your scenario? I recently made the fix to have uninstall scripts run before remove files and install scripts to run after install files. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta Sent: Wednesday, January 17, 2007 2:32 PM To: wix-users@lists.sour

Re: [WiX-users] automatically launching .Net framework install if it (.Net framework) is not present

2007-01-17 Thread Sotorin
Ok, then how can you do it? I can package distributable on the same CD, I can detect if it's installed on user's computer but how can you trigger automatic install? Installing Framework (if it's not installed) is mandatory task we have to perform with our installer. Mike Dimmick-2 wrote: > > A

Re: [WiX-users] automatically launching .Net framework install if it (.Net framework) is not present

2007-01-17 Thread Sandeep . Baweja
Bob had earlier suggested the Visual Studio bootstrapper. I have not found decent documentation for it. Perhaps I did not look at the right places. I had already started writing my own little bootstrapper in un-managed C++ that looks in the registry to find if the .Net framework is installed R

[WiX-users] re-sequence SQL execution

2007-01-17 Thread Don Tasanasanta
Is it possible to re-sequence the SQL execution to happen before InstallFiles? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT

Re: [WiX-users] minor upgrade not upgrading all files

2007-01-17 Thread Rob Mensching
To quickly tell ifyou broke a minor upgrade rule check out: http://robmensching.com/blog/archive/2007/01/04/Doing-a-small-update-or-minor-upgrade-in-MSI-Use.aspx -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil Sent: Wednesday, January 17, 20

Re: [WiX-users] automatically launching .Net framework install if it (.Net framework) is not present

2007-01-17 Thread Mike Dimmick
As Bob said, you cannot do this because you can't have two MSI installations running concurrently. The .NET Framework 2.0 installation will fail if you try to run it from a custom action in your MSI. -- Mike Dimmick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [WiX-users] automatically launching .Net framework install if it (.Net framework) is not present

2007-01-17 Thread Sotorin
You can download donetfx.exe (which is Framework 2.0 redistributable) and run it from your MSI via CustomAction's ExeCommand attirbute. This is exactly what I have to do too. Bob Arnson-3 wrote: > > [EMAIL PROTECTED] wrote: >> However I want my setup to launch Microsoft Component installer SDK

Re: [WiX-users] minor upgrade not upgrading all files

2007-01-17 Thread Wilson, Phil
The recipe for a minor upgrade by reinstalling the product is to rebuild the MSI file with the higher versioned code files, change its PackageCode, increment its ProductVersion, and install with msiexec /I REINSTALL=ALL REINSTALLMODE=vomus. If you broke the rule "don't delete a component" that's s

Re: [WiX-users] detect feature on upgrade

2007-01-17 Thread Rob Mensching
MigrateFeatureStates action? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta Sent: Wednesday, January 17, 2007 10:03 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] detect feature on upgrade Is there a way or technique for detecting which features have a

[WiX-users] detect feature on upgrade

2007-01-17 Thread Don Tasanasanta
Is there a way or technique for detecting which features have already been installed during an upgrade? Aka... user runs the next version of the product and the feature tree displays what was installed in the previous version. --

[WiX-users] minor upgrade not upgrading all files

2007-01-17 Thread Scott Sam
I'm trying to upgrade version 3.0 of our software to version 3.1. there are at least 2 files that do not get upgraded when I do a minor upgrade. They are version 3.0 and need to be replaced by the 3.1 version. If I uninstall the 3.0 version then install the 3.1 version the correct files are put o

[WiX-users] Question about checkboxes in WIX

2007-01-17 Thread Andy Ness
I am using WIX for our current installer. Most of the folks who are familiar with it have since left the team, and I am tasked with making some changes to our install. The one small, simple thing I am trying to do is to add a checkbox to a dialog. I have been able I can get it in the dialog,

Re: [WiX-users] Modifying permissions instead of setting them

2007-01-17 Thread Don Tasanasanta
I second this request... is there a way of setting (modifying or adding to) permissions of an already existing folder (not created by the install) instead of resetting all the permissions on that folder? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beh

[WiX-users] tallow.exe

2007-01-17 Thread Pandrea Corina
Hello! I run tallow.exe over a directory on a computer an generates an .wxs file with the wix schema associated for that directory. For every file is generated a name that respects the form 8.3 characters. But then I try to do the same thing on other computer but there the names are not in this

[WiX-users] Build an shared side-by-side assembly merge module

2007-01-17 Thread Frank Büttner
Hello, how can I build an merge module witch will be installed as shared side-by-side assembly under the WinSxS folder under the OS. The files that must installed are C++ files compiled with the VS C++ 2005 Express. So I thing it must be possible. But how. At first I have build an default merge mod

Re: [WiX-users] DIFx prompt shows up behind UI

2007-01-17 Thread J. J. Farrell
From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Monday, January 15, 2007 11:52 PM Quinton Tormanen wrote: I've just switched from our own custom action (calling a DLL function) to using DIFxApp with WiX. I've found that I have to leave the DriverPlugAndPlayPrompt set to "yes", or the install

Re: [WiX-users] OK Why does this not work

2007-01-17 Thread Tony Hoyle
Joe O'Sullivan wrote: > This will compile fine when I run it I get "The Installer has encountered an > unexpected error installing this package. This may indicate a problem with > this package. The Error Code is 2721" > > What am I doing wrong arrrgh! :-} That's 'can't find custom action'. That

[WiX-users] OK Why does this not work

2007-01-17 Thread Joe O'Sullivan
I have spent to long looking at the same thing. This to me means I am missing something very easy. Here is my code

Re: [WiX-users] Set firewall exception

2007-01-17 Thread André Pönitz
> David Thielen > It's all peer to peer, no server. So each AddIn listens for the UDP > broadcasts and replies to the broadcaster saying they exist. > > The broadcast occurs at startup and if the number of replies is greater > than the license allows that AddIn is disabled. So the first N can run,