[WiX-users] (no subject)

2008-04-03 Thread teknolog
I am doing an MSI that must run multiple custom actions sequentially on install and on uninstall. These custom actions involve running the same installed file all over again. They also involve deleting certain directories. Is there a clean way of achieving this? Currently, the setup complains and

Re: [WiX-users] (no subject)

2008-04-04 Thread teknolog
Still no luck. It now fails to install all together. To give more context, I chain all the commands after InstallFinalize. Look in the original email for entire code. Thanks, RG > [EMAIL PROTECTED] wrote: >> > Id="LaunchFile" >> Property="STUBENV" >> Exe

Re: [WiX-users] (no subject)

2008-04-04 Thread teknolog
I did it after InstallFiles or MsiPublishBinaries. The problem I keep running into is that it will not uninstall. I am parusing the Windows Installer documentation in parallel to this. Thanks, RG > Deferred custom actions must be scheduled between InstallInitialize and > InstallFinalize. > > -Bri

[WiX-users] Installing/Uninstalling to a registry key directory

2008-04-06 Thread teknolog
The Orcas tool complains that I should not install to AppData or to a particular user profile without using a registry key. How do I achieve this? Thanks, R- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference

Re: [WiX-users] (no subject)

2008-04-07 Thread teknolog
This is: the MSI will not uninstall. RG - Original Message - From: "Wilson, Phil" <[EMAIL PROTECTED]> To: Sent: Monday, April 07, 2008 11:17 AM Subject: Re: [WiX-users] (no subject) > If "it will not uninstall" means that there's a custom action that doesn't > run on uninstall, then s

[WiX-users] pausing wix setup

2008-04-08 Thread teknolog
How can I pause a Wix setup for around 40 seconds during install execute sequence? I need to pause by a specific amount of seconds. Thanks, R - This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Register now

Re: [WiX-users] pausing wix setup

2008-04-08 Thread teknolog
Nvm. I figured it out. Thanks, R > How can I pause a Wix setup for around 40 seconds during install execute > sequence? I need to pause by a specific amount of seconds. > > Thanks, > R > > > - > This SF.net email is sponsored

[WiX-users] use registry value for install directory

2008-04-09 Thread teknolog
I would like to install and uninstall a part of my program to a directory. This directory must be saved as a registry value and removed on uninstall based on this value. I need to save personalfolder\MyApp as the registry value, for example. Thanks, R ---