Re: [WiX-users] Running CustomAction as admin

2007-01-15 Thread Bob Arnson
André Schoorl wrote: Adding Impersonate="No" did not solve my permissions problem. When I add Execute="deferred" as well, the custom action simply doesn't run anymore. Running with /log I get error 2762. See http://msdn2.microsoft.com/en-us/library/aa368268.aspx for details about schedu

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

2007-01-15 Thread Bob Arnson
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 will fail on Vista if my USB device isn't plugged in when the install runs. However

Re: [WiX-users] Wix3 Schema - , Tags

2007-01-15 Thread Bob Arnson
Barnum, Mark wrote: What are these tags for? Specifically, it looks like the only way to dynamically / statically add items to a list box is via the C++ (which is fine) method described in the Wix tutorial. If these tags are useful, an example of the ListBox / ListBoxItem in use would be gre

Re: [WiX-users] Patch Uninstall Help

2007-01-15 Thread Bob Arnson
Emma Hanna wrote: Yes I have thank you, but none of them apply. Has anyone else had issues uninstalling patches? I even tried out the sample patch on the WIX tutorial site http://www.tramontana.co.hu/wix/lesson4.php and could not get it to uninstall either -- has anyone else tried it and

Re: [WiX-users] Running CustomAction as admin

2007-01-15 Thread André Schoorl
Adding Impersonate="No" did not solve my permissions problem. When I add Execute="deferred" as well, the custom action simply doesn't run anymore. Running with /log I get error 2762. Re: FW: Running CustomAction as admin From: Wi

Re: [WiX-users] Website redirect?

2007-01-15 Thread Matthew Janulewicz
Yup. I already entered one: http://sourceforge.net/tracker/index.php?func=detail&aid=1608875&group_i d=105970&atid=642717 -mattyj _ From: Don Tasanasanta [mailto:[EMAIL PROTECTED] Sent: Monday, January 15, 2007 3:42 PM To: Rob Mensching; Matthew Janulewicz; wix-users@lists.

Re: [WiX-users] Patch Uninstall Help

2007-01-15 Thread Emma Hanna
Yes I have thank you, but none of them apply. Has anyone else had issues uninstalling patches? I even tried out the sample patch on the WIX tutorial site http://www.tramontana.co.hu/wix/lesson4.php and could not get it to uninstall either - has anyone else tried it and been able to? Thanks

[WiX-users] DIFx prompt shows up behind UI

2007-01-15 Thread Quinton Tormanen
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 will fail on Vista if my USB device isn't plugged in when the install runs. However, almost as bad, I've found t

Re: [WiX-users] Website redirect?

2007-01-15 Thread Don Tasanasanta
Has there been a feature request open on this? I am looking to accomplish the same thing and check one of the 3 checkboxes associated with it. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching Sent: Friday, December 15, 2006 6:02 PM

Re: [WiX-users] Setting "Script Source Access" in Virtual Directory Properties

2007-01-15 Thread Rob Mensching
If the FeatureRequest is still open, then it probably hasn't been implemented. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sankaranarayanan Sent: Monday, January 15, 2007 10:54 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Setting "Script

Re: [WiX-users] App extensions for ASP.NET

2007-01-15 Thread Rob Mensching
Ahh, well, David Adams is cool and all (I've never actually met him but he's sent me email a few times) but I'm pretty certain he does not work on the IIS or ASP.NET team. So, you can do as he does, but I think only someone on the ASP.NET team (or maybe IIS) could speak to an official solution

Re: [WiX-users] SQL Instance

2007-01-15 Thread Dhaval Patel
I figured out the first issue - as mentioned before, I ask for the user's credentials upon uninstallation too. The 2nd issue is still not resolved. I have tried various combinations of passing credentials, Rob, and none of them seem to work. The only action that I am able to perform successfully

[WiX-users] Wix3 Schema - , Tags

2007-01-15 Thread Barnum, Mark
What are these tags for? Specifically, it looks like the only way to dynamically / statically add items to a list box is via the C++ (which is fine) method described in the Wix tutorial. If these tags are useful, an example of the ListBox / ListBoxItem in use would be great, I attempted a couple

Re: [WiX-users] App extensions for ASP.NET

2007-01-15 Thread David Thielen
Here is the question from my WIX programmer: "Is it preferable to call aspnet_regiis to handle the aspnet extensions or should the built-in wix actions be used to manually register them?" There are numerous posts on this in the mail archive like http://www.mail-archive.com/wix-users@lists.so

[WiX-users] Setting "Script Source Access" in Virtual Directory Properties

2007-01-15 Thread Sankaranarayanan
Hi, I am currently using Wix Version 2.0.3620.0. The “WebDirProperties” element doesn’t seem to have any property for enabling “Script Source Access”. >From this URL - >https://sourceforge.net/mailarchive/message.php?msg_id=15420889 - I understand >that it’s a feature request (Feature Reques

Re: [WiX-users] shortcut to folder

2007-01-15 Thread John Lalande
I need a shortcut in the start menu that opens a folder. On 1/14/07, Rob Mensching <[EMAIL PROTECTED]> wrote: You mean a shortcut to a folder or a folder in the Start Menu for shortcuts? Both should be possible. *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *John Lalan

Re: [WiX-users] Registry Search REG_DWORD Handling

2007-01-15 Thread Bob Arnson
Dyson, Peter wrote: > What are the issues in getting just the Value from a reg search without > the prepended #? > MSI doesn't support it. Take a look at the MSI SDK doc for the RegLocator table, which is what RegistrySearch elements turn into: The installer adds a prefix to the registry valu

Re: [WiX-users] CheckBox and Eenvironment Variable

2007-01-15 Thread Bob Arnson
Iqbal wrote: > I would like to set the environment variable using a checkbox. The > checkbox should be checked by default, meaning environment variable > should be set unless the user unchecks it. > > > Value="[INSTALLDIR]" System="yes" Permanent="no" /> > EnvironmentSetCheck >

Re: [WiX-users] Installing service parameters with WiX

2007-01-15 Thread Oliver Robinson
Thanks Levi. I failed to copy mailing list on my response to Dan - copied below: Dan Hoeger wrote: Yes, that's probably the only way. -Original Message- From: Oliver Robinson [mailto:[EMAIL PROTECTED] Sent: Monday, January 15, 2007 8:41 AM To: Dan Hoeger Subject: Re: [WiX-users] Install

Re: [WiX-users] Installing service parameters with WiX

2007-01-15 Thread Levi Wilson
Look at ServiceInstall/@Arguments On 1/15/07, Oliver Robinson <[EMAIL PROTECTED]> wrote: I am trying to install a service that requires Parameters. Is there a recommended wix way of doing this? Thanks, Oliver - Take Surve

Re: [WiX-users] Installing service parameters with WiX

2007-01-15 Thread Dan Hoeger
This is how we've done it -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Oliver Robinson Sent: Monday, January 15, 2007 8:20 AM To: wix

[WiX-users] Installing service parameters with WiX

2007-01-15 Thread Oliver Robinson
I am trying to install a service that requires Parameters. Is there a recommended wix way of doing this? Thanks, Oliver - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll ge

[WiX-users] Registry Search REG_DWORD Handling

2007-01-15 Thread Dyson, Peter
I am trying to be nice to users upgrading from one version (or rolling back) and use the general method of creating a default value which the user can override in the install, or may override by editing the registry value itself later on (perfectly valid in the context of the applications, things c

Re: [WiX-users] Setting all components to 64-bit by default...

2007-01-15 Thread André Pönitz
Ravikumar Gopinath wrote: > Hi, > By default, WIX treats all components as 32-bit. Our > installation package will install either 32 bits or 64-bits > binaries and we don't have any mixed files going into > separate directories. Is it possible to mark all components > as 64-bit? Not as far as