[WiX-users] Fw: ICE82 with Merge Module (Cristian Baiu)

2007-09-12 Thread Cristian Baiu
Nobody knows what is going wrong here ? Hello all, I'm building a setup program and a merge module using Wix. In my merge module I am referencing "ProgramFilesFolder" - I want to install something in Program Files\Common Files\MyCompany.In my main setup program I am also referencing "ProgramFil

[WiX-users] Administrative Installation

2007-09-12 Thread V K Gangwar
I made a source image of my .MSI package using msiexec /a option and put in my machine. Can anybody tell me that how on user in same workgroup can install in his machine from this source image? I mean that how a user can install .msi in his machine? What he has to do? regards, Veerendra

Re: [WiX-users] Problem with Start menu shortcuts in Wix 3.0

2007-09-12 Thread James Finnigan
FYI - the current guidance is that you should make shortcuts right off all programs (single shortcut), or in a folder off all programs (e.g. Microsoft Office) if you have several shortcuts. Many users struggle navigating so many submenus. You should add registry keypaths, and the RemoveFolder

[WiX-users] Problem with Start menu shortcuts in Wix 3.0

2007-09-12 Thread Spaz Monaught
I have seen several discussions of this issue but have tried everything there with no luck, so I'll start at the beginning. I want to have a very simple WiX created msi that installs a few basic components to the standard Program Files folder and adds a shortcut of the type All Programs\Company Na

[WiX-users] Copying a directory of files from SourceDir\subdir

2007-09-12 Thread Chris Mumford
Hey there: I have an installation layout like this: Setup.msi CommonFiles/ where CommonFiles contain user configurable files. When I run the installer I want to copy all of the files in the CommonFiles directory which is beside my MSI into the: %ALLUSERSPROFILE%\Application Data\MyProgram\Commo

[WiX-users] Generate multiple MSIs from a single wxs source?

2007-09-12 Thread Jared Hughes
My group is producing two products: a Runtime and an SDK. Since there is a lot of similarity between the two products (a lot of the same files, reg keys, shortcuts, custom actions, etc) there is a push to get everything unified into a single file that should, in theory, be easy to maintain. Is it

Re: [WiX-users] problem with MsiRMFilesInUse dialog

2007-09-12 Thread John Lalande
It does now...and the issue is gone. Thanks!!! >>That kind of makes sense. The old check looks at top level windows that >>the user can be prompted to close. RM isn't restricted to finding >>windows, so how does it identify the program? It seems to be getting it >>from the FileDescription text i

Re: [WiX-users] sequence question...

2007-09-12 Thread Brian Simoneau
The sequence of events can be changed in an installer. You can use Orca to see the sequence of events for your particular msi file. -Brian Simoneau -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frédéric Viollet Sent: Wednesday, September 12, 2007 10:5

Re: [WiX-users] condition onl component

2007-09-12 Thread Wilson, Phil
That registry search doesn't look right to me. Using a (editor inheritance) framework check as a model: but you also have file and directory in yours. If you want to know if your InstallDir item is there, and that's what drives the condition, then what are the file/directory search entri

[WiX-users] how to prevent XmlConfig from blocking upon failure

2007-09-12 Thread Hongping Lim
Hi, I am working on a installer uses XmlConfig to modify xml configuration files on the system. When the files are valid, all is fine and the installer works as expected. However, if a file is malformed, or if an expected ElementPath is not found, XmlConfig throws an error, and the whole insta

Re: [WiX-users] problem with MsiRMFilesInUse dialog

2007-09-12 Thread Wilson, Phil
That kind of makes sense. The old check looks at top level windows that the user can be prompted to close. RM isn't restricted to finding windows, so how does it identify the program? It seems to be getting it from the FileDescription text in the version resources in the binary (that's where Orca

Re: [WiX-users] problem with MsiRMFilesInUse dialog

2007-09-12 Thread John Lalande
After making sure that all the window Text properties were correctly set and still having the problem, I tried an experiment where I started Orca and then attempted to uninstall it in Vista and in XP. Sure enough, the FilesInUse dialog appeared in both cases. But the text displayed is completely

[WiX-users] Merge Module Duplicating TARGETDIR Primary Key

2007-09-12 Thread b3nspencer
Hi, I am using Wix 3.0.2925.0 and have created the attached .wxs file. It includes a merge module for MDAC, which can be downloaded from http://download.microsoft.com/download/mdac27/module/2.0/WIN98XP/EN-US/MdacInstall.exe http://download.microsoft.com/download/mdac27/module/2.0/WIN98XP/EN-US/

Re: [WiX-users] MSB4035 - WiX 3.0 & TFS Beta 2

2007-09-12 Thread Justin Rockwood
This bug has been fixed, but hasn't been checked in yet. In the meantime, you can make the change yourself if you want (the change is in bold): Justin From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jim Dierkes Sent: Wednesday, September 12, 2007 1:40 AM To: wix-users@

Re: [WiX-users] The Wix Book

2007-09-12 Thread Schrieken, Rene
AFAIK Julie Campbell is doing the same (with almost the same rationale) at http://wix.mindcapers.com/wiki/Main_Page Which can be updated without too much struggle... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Leigh Sent: Wednesday, September

Re: [WiX-users] save username and password

2007-09-12 Thread salome zk
How can i access the username that i have saved? and also how can i save it from the PrompCredential Page? thanks, Mailinglist <[EMAIL PROTECTED]> wrote: v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(

[WiX-users] sequence question...

2007-09-12 Thread Frédéric Viollet
Hi, I've got a new question for the community. Could someone tell me if the element is called before or after the action Thanks in advance for your help. Fred - This SF.net email is sponsored by: Microsoft Defy all chall

Re: [WiX-users] user home predefined name?

2007-09-12 Thread Sebastian Brand
The reason is, because you shouldn't use that folder :-) Have you tried: [DesktopFolder]..\ ? Also think of the possibility that the installation may run in a per- machine mode ( = All Users). Best regards, Sebastian Brand Instyler Software - http://www.instyler.com On Sep 10, 2007, at 10

Re: [WiX-users] Auto launch of application on machine reboot

2007-09-12 Thread Sebastian Brand
You can add a registry value to HKLM\Software\Microsoft\Windows\CurrentVersion\Run to run an application everytime a user logs on. Or use ...\RunOnce if you only want to run it once. See in the wix documentation. It's pretty straight forward. Best regards, Sebastian Brand Instyler Software

Re: [WiX-users] Localizing the cancel button in Reduced UI.

2007-09-12 Thread Sebastian Brand
As far as I know this button on the Initializing... dialog from windows installer can't be localized. It's part of the MSI engine which runs in the language of the current Windows installation. Best regards, Sebastian Brand Instyler Software - http://www.instyler.com On Sep 12, 2007, at 2:

Re: [WiX-users] save username and password

2007-09-12 Thread Mailinglist
Hi Salome, you can store the username in the registry (but only the username) in a key that is not by default deleted on uninstall. Oliver From: salome zk [mailto:[EMAIL PROTECTED] Sent: Mittwoch, 12. September 2007 14:46 To: Mailinglist; wix-users@lists.sourceforge.net Subject: Re: [WiX-users]

Re: [WiX-users] setting the asp.net version

2007-09-12 Thread John Lalande
That did the trick! Thanks! John On 9/12/07, David Stindl <[EMAIL PROTECTED]> wrote: > > Forgot the "FRAMEWORKROOT" property code: > > >Key="SOFTWARE\Microsoft\.NETFramework" Type="directory" > Name="InstallRoot" /> > > > > D. > > > 2007/9/12, David Stindl <[EMAIL PROTECTED]>:

Re: [WiX-users] save username and password

2007-09-12 Thread salome zk
Thanks for you answer, but just one other question, is there a way to just store the username? You see, customers keep losing their username and so once they have unistalled the software the next time they want to install it they can't remeber their username.I wanted to know if there's a way

[WiX-users] Localizing the cancel button in Reduced UI.

2007-09-12 Thread sandy
Hi, How can I localize the cancel button that appears when I remove my application from ARP? Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. http://farechase.yahoo.c

Re: [WiX-users] save username and password

2007-09-12 Thread Mailinglist
Hi, even if you use a custom action to encrypt and decrypt the credentials, it would be unsafe to store them, cause they coud be found and decrypted. The data you store can be hacked on (RegistryKeys, File) as well as your code that you use to store/encrypt/decrypt them. If you use tools, they

Re: [WiX-users] ZIP archive inside MSI, UNZIP after installation...

2007-09-12 Thread Christopher Painter
You may have other problems to deal with also. At places I've worked, the doco people have been really horrible. The first typical problem ( which you are already describing ) is that they have no concept of integration, design by contract or abstraction.Not only will their build output

[WiX-users] save username and password

2007-09-12 Thread salome zk
Hi Is there a way to store the username and password entered for an install somewhere and use it again when the same installation is done on that PC? thanks. - Fussy? Opinionated? Impossible to please? Perfect. Join Yahoo!'s user panel and lay it on us.

[WiX-users] License Key to control features

2007-09-12 Thread Nick Meredith
Hi, I would like to enter a license key for my installer to control which features are visible to the user. I have created a UI page for entering the key and can successfully control some properties to identify which features should be available. The problem I have is that using condition eleme

Re: [WiX-users] condition onl component

2007-09-12 Thread Frédéric Viollet
Does nobody have a clue? I'm really sorry to insist on my problem, but it's getting quite a critical issue :( Thanks again for your help. Frédéric Viollet a écrit : > Stefan Krueger [MVP] a écrit : > >> So you only want to condition the copy (which corresponds to a MoveFile >> table row I gu

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-12 Thread kalle . niemitalo
To keep File.Sequence consistent with the order of files in the CAB, we make administrative images of both databases and then run the following command on them before executing MSIMSP: WiRunSQL.vbs package.msi "UPDATE `File` SET `Sequence` = 0" "UPDATE `Media` SET `LastSequence` = 0" Because all

Re: [WiX-users] The Wix Book

2007-09-12 Thread Thomas Leigh
This would be cool, especially if you made the work available under the GNU Free Documentation License :) Where's your website? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Wone Sent: 12 September 2007 00:47 To: wix-users@lists.sourceforge.net S

[WiX-users] MSB4035 - WiX 3.0 & TFS Beta 2

2007-09-12 Thread Jim Dierkes
I get the following error with the Wix.Targets file when trying a team build with Team Foundation Server 2008 Beta 2. [Any CPU/Debug] C:\Program Files\MSBuild\Microsoft\WiX\v3.0\Wix.targets(55,3): error MSB4035: The required attribute "Project" is missing from element . Here is line 55 from W

Re: [WiX-users] [OT] user home predefined name?

2007-09-12 Thread Mailinglist
Hi Marcel, >The reason I have to put my files at this specific location is that I am >writing an installer for an existing opensource tool (maven) which expects >certain files in this exact location. Well, since it is open source, you could easily solve the problem at the source. How does mave

Re: [WiX-users] setting the asp.net version

2007-09-12 Thread David Stindl
Forgot the "FRAMEWORKROOT" property code: D. 2007/9/12, David Stindl <[EMAIL PROTECTED]>: > Hi John you should do it with the element: > -- > > CheckPath="yes" > > Script="y

Re: [WiX-users] setting the asp.net version

2007-09-12 Thread David Stindl
Hi John you should do it with the element: -- -- Because installation then replaces all the default extensions, you have to specify all extensions, which you need. Something like that: ---

Re: [WiX-users] Managed custom action return values

2007-09-12 Thread Mailinglist
Hi Phil, >I think you're forgetting that not all custom actions run inside the setup >process (I assume you're referring to msiexec.exe). Custom actions can be >external executables that run in their own process. Well, at another abstraction of sight, they run in the setup process. ;-) >I thin

Re: [WiX-users] ZIP archive inside MSI, UNZIP after installation...

2007-09-12 Thread David Stindl
Yes you are right, guys... Dynamical file linking is normally very dangerous operation, from logic reasons... But there are situations, when it is really useful.. In my case we have any static-html documentation of our web application and i need to include it as it comes from our documentation team