Re: [WiX-users] short name of the default windows installer directory and the status of burn

2010-01-12 Thread Bob Arnson
On 1/11/2010 11:50 AM, Sebastian Brand (Instyler Software) wrote: > The short name is generated randomly during the build of WiX installation. > In my Wix3.5 install it's "nzj-aqro" (in Program Files folder) > 1. It's not random: it's a stable hash, generated from the path information so it d

Re: [WiX-users] Added ErrorLog Dialog at end of Install...

2010-01-12 Thread Bob Arnson
On 1/7/2010 12:17 PM, Dominique Louis wrote: >What would be the best way to add a custom ErrorLog Dialog that is > only displayed if an error occurs during installation and it would > appear right at the end of the installation in that case. See InstallUISequence/Show/@OnExit for the different

Re: [WiX-users] Disable repair and admin setup...

2010-01-12 Thread Bob Arnson
On 1/8/2010 12:53 PM, Wilson, Phil wrote: > It's like saying you don't support FilesInUse dialogs, requests for the > original install source, reboots at the end of the install and other things > that Windows will do whether you want to support them or not. > That's key: You can't disable or

[WiX-users] Automatic MSI rename???

2010-01-12 Thread Tobi Ha
Hi, I have a question concerning the following topic: In our company we create a msi file for a component/product ,e.g. xyz.msi. The product may only exist in one, the newest version, on the customers machine, therfore we use Major upgrades to replace any older version during installation. For

[WiX-users] Uninstalling after a minor upgrade

2010-01-12 Thread Mihail Roman
Hi I have noticed that after applying a minor upgrade (1.0.1) the uninstall will be executed with using the older version of the installation package (1.0.0) and not with the new package (1.0.1). How to uninstall using version 1.0.1 ? This is what I done: I have a version 1.0.0 msi package. Afte

Re: [WiX-users] Automatic MSI rename???

2010-01-12 Thread Pally Sandher
Sounds like the user is downloading your MSI from a web page using Internet Explorer & clicking "Run" rather than "Save" in the download prompt. The MSI is being run from the users Temporary Internet Files & when the time comes for them to install the later version, the old MSI simply doesn't ex

[WiX-users] Uninstalling after a minor upgrade

2010-01-12 Thread Mihail Roman
Uninstalling after a minor upgrade Hi I have noticed that after applying a minor upgrade (1.0.1) the uninstall will be executed with using the older version of the installation package (1.0.0) and not with the new package (1.0.1). How to uninstall using version 1.0.1 ? This is what I do

Re: [WiX-users] Automatic MSI rename???

2010-01-12 Thread Peter Shirtcliffe
You could wrap the MSI up in a self-extracting archive which unpacks to a known location. This also avoids the problem of the MSI file being renamed by the downloader. You shouldnt rename an MSI file. -Original Message- From: Pally Sandher [mailto:pally.sand...@iesve.com] Sent: 12 Janua

Re: [WiX-users] short name of the default windows installer directory and the status of burn

2010-01-12 Thread Sebastian Brand (Instyler Software)
Thanks for the clarification, I thought the shortname was always used. So in real life it's probably "WINDOW~1.5" on most machines ( try DIR /X ) But you can't be sure... Short file name generation might even be disabled. Best regards, Sebastian Brand sebast...@instyler.com Geisenfelder Str. 53a

[WiX-users] Making a Requirements Dialog

2010-01-12 Thread pmdarrow
Hi all. I'd like to display a dialog after the feature customization dialog that gives the user feedback if the requirements for installing their selected features are fulfilled. For instance, if the user only selected the database feature, SQL Server is the only requirement. But if they select th

[WiX-users] How to set property Directory browsing for IIS virtual directory?

2010-01-12 Thread ????? ??????
Hi All, I need to set property Directory browsing for IIS virtual directory. As I understand Wix doesn't support this property. Is there any solution for this? -- This SF.Net email is sponsored by the Verizon Developer Com

[WiX-users] Installation of msi with user credentials

2010-01-12 Thread Rama Krishna Duddu (Infosys Technologies Ltd)
Hi I would like to install a msi file with my user credentials from command line. Can you please help me with command and procedure to meet this purpose. Thanks, Rama Krishna Duddu -- This SF.Net email is sponsored by t

Re: [WiX-users] Installation of msi with user credentials

2010-01-12 Thread Brian Rogers
Please search the forum history on Source Forge for an email titled: and question This might help you out a bit... Brian Rogers "Intelligence removes complexity." - Me http://blogs.msdn.com/icumove <-- NEW On Tue, Jan 12, 2010 at 10:31 AM, Rama Krishna Duddu (Infosys Technologies Ltd) wrote

[WiX-users] The cancel installation string

2010-01-12 Thread little.forest
Our QA complains this: Reinstall the same build, then choose the "Remove". During "Remove", hit the "Cancel" button. The dialog box shows "Are you sure you want to cancel ProductX installation?" which our QA think it should be some like "Are you sure you want to cancel ProductX removing?". Is t

Re: [WiX-users] Making a Requirements Dialog

2010-01-12 Thread MikeR
pmdarrow wrote: > > Hi all. I'd like to display a dialog after the feature customization > dialog that gives the user feedback if the requirements for installing > their selected features are fulfilled. For instance, if the user only > selected the database feature, SQL Server is the only requir

Re: [WiX-users] Windows System Folder

2010-01-12 Thread Daniel Hughes
one of the files is MSCOMM32.OCX, this is for handling com ports. We have a customer who uses a different version of this that provides the ability to access more com ports. There version is new both in time stamp and in version. However our installer replaces it, pissing said customer off. Wh

Re: [WiX-users] The cancel installation string

2010-01-12 Thread little.forest
By the way, I could change it to be "Are you sure you want to cancel?" to ignore the installation/remove operation. But if you have a better idea, please let me know. Thanks. From: little.forest To: wix-users@lists.sourceforge.net Sent: Tue, January 12, 2010

Re: [WiX-users] Windows System Folder

2010-01-12 Thread Blair
>From a debug-verbose installation log, what is the value of the REINSTALLMODE property? -Original Message- From: Daniel Hughes [mailto:daniel.hug...@tait.co.nz] Sent: Tuesday, January 12, 2010 2:53 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Wind

Re: [WiX-users] The cancel installation string

2010-01-12 Thread Blair
You could try copying the source to the CancelDlg, update it to select the text to show based on the REMOVE property. -Original Message- From: little.forest [mailto:little.for...@ymail.com] Sent: Tuesday, January 12, 2010 2:53 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users

Re: [WiX-users] Windows System Folder

2010-01-12 Thread Wilson, Phil
and something else to check is that InstallShield sometimes uses a thing called version lying. It's called "lying" because the File table in the MSI file gets a version of 65535.65535 etc so it always replaces any existing file on the system. If you managed to transfer something like th

[WiX-users] ServiceInstall query

2010-01-12 Thread Rama Krishna Duddu (Infosys Technologies Ltd)
Hi, I have updated the wix file (.wxs file) with current user id (Account) and password in section and am able to install the msi file with my login credentials few days back. But now as my login credentials are changed (i.e. password changed). So I updated the wix file accordingly i.e. chan

Re: [WiX-users] Windows System Folder

2010-01-12 Thread Neil Sleightholm
What versions are the two files? This is a standard VB6 custom control, I must admit I have never heard of an update to this to support more comm ports, is it an official Microsoft release? The "correct" way to install MSCOMM32.OCX is via the Microsoft supplied merge module, mscomm32.msm, this in

Re: [WiX-users] vc80 and vc71 merge modules

2010-01-12 Thread ricky21
Hi Igor , Have u found a work around for this.. As i wish to do the same i.e re distribute msvcr71.dll and msvcr80.dll using merge modules. Could u give me the link to download the correct version of these msm's? Igor Likhotkin wrote: > > > Hello! > > Has anyone tried to distribute VC80 and

Re: [WiX-users] The cancel installation string

2010-01-12 Thread Sebastian Brand (Instyler Software)
Hello Brian, The CancelDlgText is used on the CancelDlg. When removing the product using the Maintenance Mode it will show the CancelDlg as you described. This is probably also the reason why the ActionText on the progress dialog for most installations is just "The installer is performing the requ