[WiX-users] How to detect if it is a real user account

2014-07-06 Thread Dolevo Jay
Hi, I have an installer in WIX. I have tried to deploy it to a group of target computers in the network and encountered the following issue. The deployment was successful but there is an issue when the installer launches the application after the installation finishes using the following code:

[WiX-users] Wix toolset licence

2014-06-27 Thread Dolevo Jay
Hi, In most open source software, the name of the licence and the name of the software must be written in the licence agreement file of the product where the open source software is used. Could anyone of you tell me if it is also the case for Wix Toolkit? I know that it is MS-RL licence type

Re: [WiX-users] Unable to uninstall previously installed product

2014-06-23 Thread Dolevo Jay
??? Since you can have only have one install/uninstall at one time on a windows machine this might not work if you try to uninstall during your new install. On Fri, Jun 20, 2014 at 10:45 AM, Dolevo Jay c...@live.com wrote: Previous installer was InstallJammer. So, what would be the best

Re: [WiX-users] Unable to uninstall previously installed product

2014-06-23 Thread Dolevo Jay
with InstallerJammer and I'm assuming it doesn't use WindowsInstaller??? Since you can have only have one install/uninstall at one time on a windows machine this might not work if you try to uninstall during your new install. On Fri, Jun 20, 2014 at 10:45 AM, Dolevo Jay c

[WiX-users] Unable to uninstall previously installed product

2014-06-20 Thread Dolevo Jay
Hi, I used different installer (InstallJammer) to install my application. I have now msi installer for the same application. Could you please tell me how I can uninstall previous installation since I find no upgrade code in installjammer? Or, is it only possible to update if the previous

Re: [WiX-users] Unable to uninstall previously installed product

2014-06-20 Thread Dolevo Jay
Previous installer was InstallJammer. So, what would be the best solution for this? Should I call uninstaller of the previous installation in InstallExecuteSequence ? Any example for this? Date: Fri, 20 Jun 2014 10:30:11 -0500 From: jeremi...@gmail.com To: wix-users@lists.sourceforge.net

Re: [WiX-users] Unable to uninstall previously installed product

2014-06-20 Thread Dolevo Jay
/uninstall at one time on a windows machine this might not work if you try to uninstall during your new install. On Fri, Jun 20, 2014 at 10:45 AM, Dolevo Jay c...@live.com wrote: Previous installer was InstallJammer. So, what would be the best solution for this? Should I call uninstaller

Re: [WiX-users] How to make a condition that works both for silent and interactive install

2014-06-17 Thread Dolevo Jay
it works, then modify the working tutorial to fit your needs. Carter Quoting Dolevo Jay c...@live.com: But I am not using MVC4 project. Is there any tutorial for only wxs file? Otherwise could you please be more specific on what I should do for SimpleWebAppGroup in wxs file? Date

Re: [WiX-users] How to make a condition that works both for silent and interactive install

2014-06-17 Thread Dolevo Jay
to finish, build it, make sure it works, then modify the working tutorial to fit your needs. Carter Quoting Dolevo Jay c...@live.com: But I am not using MVC4 project. Is there any tutorial for only wxs file? Otherwise could you please be more specific on what I should

[WiX-users] How to make a condition that works both for silent and interactive install

2014-06-16 Thread Dolevo Jay
After my setup finishes, I launch the installed application automatically without asking to the user in the interactive mode.Now I have the silent installer and I want to launch the application only if user sets a specific parameter to YES. For example, msiexec.exe /i setup.msi LAUNCH_APP=YES

Re: [WiX-users] How to make a condition that works both for silent and interactive install

2014-06-16 Thread Dolevo Jay
Could anyone please tell me where I am doing wrong? I have added, Property Id=LAUNCH_APPNO/Property Component Id='WebAppSettings' Guid='0a87956e-13e3-41f2-8e52-8b6ebc3c48a2' Feature='ProductFeature' Directory='SUBDIR' util:XmlFile

Re: [WiX-users] How to make a condition that works both for silent and interactive install

2014-06-16 Thread Dolevo Jay
Hi, I followed the instructions in: http://damienbod.wordpress.com/2013/09/09/wix-installer-with-parameter-configurations/ There, they didn't mention about defining SimpleWebAppGroup. I have put my Component inside of ComponentGroup as follows: ComponentGroup Id=SimpleWebAppGroup

Re: [WiX-users] How to make a condition that works both for silent and interactive install

2014-06-16 Thread Dolevo Jay
Hi, I followed the instructions in: http://damienbod.wordpress.com/2013/09/09/wix-installer-with-parameter-configurations/ There, they didn't mention about defining SimpleWebAppGroup. I have put my Component inside of ComponentGroup as follows: ComponentGroup Id=SimpleWebAppGroupComponent

Re: [WiX-users] How to make a condition that works both for silent and interactive install

2014-06-16 Thread Dolevo Jay
Dolevo Jay c...@live.com: Hi, I followed the instructions in: http://damienbod.wordpress.com/2013/09/09/wix-installer-with-parameter-configurations/ There, they didn't mention about defining SimpleWebAppGroup. I have put my Component inside of ComponentGroup as follows

[WiX-users] How to differentiate silent installer or interactive installer in wxs?

2014-06-15 Thread Dolevo Jay
Hi all, I have my interactive installer, which works like a charm. There is a step in the interactive installer for user to accept. Now, I am trying to implement the same accept condition in the silent installer. I have followed the instructions from

[WiX-users] Command line option to silent installer

2014-06-13 Thread Dolevo Jay
Hi all, In the interactive mode, user needs to accept end-user license agreement by clicking on the checkbox, which is fine. I have now the silent installer where I want to have a command line parameter which indicated that the user accepts the end-user license agreement when the parameter is

[WiX-users] Installation hangs when launching the installed application

2014-06-12 Thread Dolevo Jay
Hi, I have the following code snipped to launch my application when the installation is complete. CustomAction Id=RunMainApp Directory=SUBDIR ExeCommand=[SUBDIR]myapplication.exe Execute=deferred Return=ignore/ InstallExecuteSequence