Re: [WiX-users] cannot make powershell custom action work on 64-bit windows 2008 R2

2009-08-23 Thread Blair
I'm hoping that the extra spaces in the TestDeferred custom action declaration's Id attribute are an artifact of either your or my email client and not what you have in code. -Original Message- From: Lian Jiang [mailto:lji...@microsoft.com] Sent: Saturday, August 22, 2009 12:23 PM To:

[WiX-users] adding registry entries if a checkbox is removed, and removing these entries if they exist when the product is uninstalled

2009-08-23 Thread Sean Farrow
Hi: I have a checkbox on the last screen of my installation. If this checkbox is checked, I want to add entries to the registry. Do I need to use a custom action, or is there another way of doing this? Also how can I then uninstall these registry engries upon uninstallation, do I need another

[WiX-users] Skipping Finish dialog and inserting AdvancedWelcomeEulaDlg

2009-08-23 Thread Sebastiaan Deckers
Hi all, I am using WixUI_Minimal and would like the installer to skip the Finish screen, and launch my application immediately. Also I would like to know how the AdvancedWelcomeEulaDlg can be used instead of the default WelcomeEulaDlg. Ideally even replacing the Checkbox + Next button combo with

Re: [WiX-users] adding registry entries if a checkbox is removed, and removing these entries if they exist when the product is uninstalled

2009-08-23 Thread Bob Arnson
Sean Farrow wrote: I have a checkbox on the last screen of my installation. If this checkbox is checked, I want to add entries to the registry. Do I need to use a custom action, or is there another way of doing this? Also how can Put the checkbox on a dialog before the install starts and

Re: [WiX-users] Skipping Finish dialog and inserting AdvancedWelcomeEulaDlg

2009-08-23 Thread Bob Arnson
Sebastiaan Deckers wrote: I am using WixUI_Minimal and would like the installer to skip the Finish screen, and launch my application immediately. Also I would like to know how the AdvancedWelcomeEulaDlg can be used instead of the default WelcomeEulaDlg. Ideally even replacing the Checkbox +

Re: [WiX-users] SelectTree mutually exclusive options

2009-08-23 Thread Bob Arnson
Slide wrote: Is there a way when using the SelectTree component to have mutually exclusive components, such that if the user chooses one item, it automatically deselects another item from being installed? The SelectionTree control doesn't support that. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] adding registry entries if a checkbox is removed, and removing these entries if they exist when the product is uninstalled

2009-08-23 Thread Sean Farrow
Hi Bob: Thanks, are there any sample dialogues with some text, and edit box with a label, a checkbox and back, next and cancel buttons? I could probably lay this out, but being unable to see I wouldn't know how it looked. Any help appreciated. Sean. -Original Message- From: Bob Arnson

Re: [WiX-users] cannot make powershell custom action work on 64-bit windows 2008 R2

2009-08-23 Thread Lian Jiang
There is a typo in my email. In my actually testing code, there is no extra space around TestDeferred. Sorry for confusion. Let me post the code segment again: CustomAction Id=Test Property=TestDeferred

Re: [WiX-users] failed to connect to database

2009-08-23 Thread Michael Osmond
Xavier The actual connection error is -2147467259, which converts to hex 80040005 which I believe is a generic access denied error. Michael -Original Message- From: BOURDET Xavier [mailto:xbour...@generixgroup.com] Sent: Saturday, 22 August 2009 12:26 AM To:

Re: [WiX-users] failed to connect to database

2009-08-23 Thread Blair
-2147467259 = 0x80004005 = E_FAIL (in the C/C++ headers) In some networks, the SYSTEM user doesn't have network access. -Original Message- From: Michael Osmond [mailto:mosm...@baytech.com.au] Sent: Sunday, August 23, 2009 3:38 PM To: General discussion for Windows Installer XML toolset.

[WiX-users] Check input characters of install path

2009-08-23 Thread sandun css
Hi, I need to check whether the installation path contains characters other than, a-z, A-Z, 0-9, -, _ and space. What I did was this, 1. Removed the standard BrowseDlg and added a new browse dialog. (MyBrowseDlg) Dialog Id=MyBrowseDlg Width=370 Height=270 Title= !(loc.BrowseDlg_Title)