[WiX-users] XMLUTIL Help

2013-12-16 Thread Rohit Sharma
Hello Folks Trying to figure out the right entry to delete the node I create during installation at uninstall time. Here's what I have: At end of installation I have:

Re: [WiX-users] What does '&' and '!' inside CDATA[] do?

2014-05-13 Thread Rohit Sharma
http://msdn.microsoft.com/en-us/library/aa368012(v=vs.85).aspx See: Feature and Component State Values -Original Message- From: Pavan Konduru [mailto:pavan.kond...@accelrys.com] Sent: Tuesday, May 13, 2014 2:35 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] What

[WiX-users] Feature Tree modification based on property.

2010-03-24 Thread Rohit Sharma (SIDC)
Hello I have a wix project where I have 2 Main features and 1 Main feature has two sub features. I have added a dialog box which I show to the user which takes the productkey as input from the user. The return value from my custom action lets me know whether the Feature 1 or Feature 2 are to

Re: [WiX-users] Feature Tree modification based on property.

2010-03-24 Thread Rohit Sharma (SIDC)
ich sees the FEATUREx property not set (or some other default value you give it) and therefore sets the feature level to 1. As an aside, licensing via installation is wide open to piracy. -- sig://boB http://joyofsetup.com/ On 3/24/2010 8:21 AM, Rohit Sharma (SIDC) wrote: > Hello > > &

Re: [WiX-users] Prompt for a user name and password

2010-03-25 Thread Rohit Sharma (SIDC)
WixUI has different modes namely Mondo, FeatureTree, Minimal, InstallDir and Advanced. In your Wix project you just add them for reference and it uses default UI dialogs to show. But in case you want to add a custom dialog you need to download the source of WixUI dialog of your choice, add it to y

Re: [WiX-users] Wix UI navigation Help

2010-03-25 Thread Rohit Sharma (SIDC)
I am assuming that the WarningDialog is a dialog which is from your custom action and Process Always is MB_OK type button. The click on "Proceed Anyways" button should set a property: Say GONEXT = TRUE. Then you may use this property as a condition on DLG1's Next button's new dialog event.

Re: [WiX-users] Beginner's Question: 32 Bit MSI on 64 Bit OS

2010-03-25 Thread Rohit Sharma (SIDC)
Please refer to the following URL: http://msdn.microsoft.com/en-us/library/aa372855%28VS.85%29.aspx http://windows.microsoft.com/en-IN/windows-vista/32-bit-and-64-bit-Windows-frequently-asked-questions http://msdn.microsoft.com/en-us/library/aa384249%28VS.85%29.aspx Microsoft supports a Emulat

Re: [WiX-users] Wix UI navigation Help

2010-03-25 Thread Rohit Sharma (SIDC)
Well you may ignore that line. What I meant was on "Process Always" button, set a property and use that property as a condition on next button of dlg1's newdialog event. Looks like your code formatting got messed up when you replied to my mail, can't understand anything from it. Regards Rohit

Re: [WiX-users] Feature Tree modification based on property.

2010-03-25 Thread Rohit Sharma (SIDC)
01 from control event of next button as suggested in comment# 17 from Daniel in Bob's blog to trigger re-evaluation of feature condition but it didn't work for me. Regards Rohit -Original Message- From: Rohit Sharma (SIDC) Sent: Thursday, March 25, 2010 12:15 PM To: 'w

Re: [WiX-users] Feature Tree modification based on property.

2010-03-25 Thread Rohit Sharma (SIDC)
ed on property. On 3/25/2010 3:12 PM, Rohit Sharma (SIDC) wrote: > I tried setting INSTALLLEVEL=101 from control event of next button as > suggested in comment# 17 from Daniel in Bob's blog to trigger > re-evaluation of feature condition but it didn't work for me. > I don'

Re: [WiX-users] Wix UI navigation Help

2010-03-26 Thread Rohit Sharma (SIDC)
Sagar Let's go back to your original message: {If the user presses WarningDialog 'Do not proceed' button in WarningDialog, i should close WarningDialog and return to Dlg1. Everything works fine till this point. What i want is If the user presses 'Proceed Anyways' dialogbox in WarningDialog, i s

Re: [WiX-users] Getting error of "2262 2: AdminProperties 3:-2147287038 "

2010-03-26 Thread Rohit Sharma (SIDC)
Looks like this is not a windows installer error. Maybe it's not able to find a file its looking for. Run your installer from a command prompt like: C:\msiexec /I /l*vx c:\install.log This should produce complete installation log where in you can search for exact problem before you get the erro

Re: [WiX-users] Getting error of "2262 2:AdminProperties 3:-2147287038 "

2010-03-26 Thread Rohit Sharma (SIDC)
Original Message- From: Rohit Sharma (SIDC) [mailto:rohit.sha...@symyx.com] Sent: Friday, March 26, 2010 12:43 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Getting error of "2262 2: AdminProperties 3:-2147287038 " Looks like this is not a

Re: [WiX-users] Getting error of"2262 2:AdminProperties 3:-2147287038 "

2010-03-26 Thread Rohit Sharma (SIDC)
----- From: Rohit Sharma (SIDC) [mailto:rohit.sha...@symyx.com] Sent: Friday, March 26, 2010 2:47 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Getting error of "2262 2:AdminProperties 3:-2147287038 " Logs says: "MainEngineThread is returning 16

Re: [WiX-users] Product-Id as commandline Input

2010-03-26 Thread Rohit Sharma (SIDC)
Probably wix has nothing to do with it. Try running msiexec and refer help or check here: http://technet.microsoft.com/en-us/library/cc759262%28WS.10%29.aspx -Original Message- From: Arun [mailto:a...@srasys.co.in] Sent: Friday, March 26, 2010 2:55 PM To: wix-users@lists.sourceforge.net

Re: [WiX-users] Problem using Wix3 in TFS Build.

2010-03-26 Thread Rohit Sharma (SIDC)
Christian Can you check if TFS build use msbuild and if they do you may set a property to over-ride the Outdir so that it would run something like: Msbuild yoursolution.sln /p:OutDir=newpath to build the project. This will compile all the projects and make sure $(OutPutPath) variable has same va

Re: [WiX-users] Problem using Wix3 in TFS Build.

2010-03-26 Thread Rohit Sharma (SIDC)
Bullseye :) -Original Message- From: Christian McArdle [mailto:cmcar...@sdl.com] Sent: Friday, March 26, 2010 4:23 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Problem using Wix3 in TFS Build. > Note that the output path is correctly redirected by TFS Build. However,

Re: [WiX-users] Feature Tree modification based on property.

2010-03-26 Thread Rohit Sharma (SIDC)
=== Notice: This e-mail message, together with any attachments, contains information of Symyx Technologies, Inc. or any of its affiliates or subsidiaries that may be confidential, proprietary, copyrighted, privileged and/or protected work product, and is meant solely for the intended recipient.

Re: [WiX-users] Feature Tree modification based on property.

2010-03-29 Thread Rohit Sharma (SIDC)
ssage- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Sunday, March 28, 2010 12:39 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Feature Tree modification based on property. On 3/26/2010 12:10 AM, Rohit Sharma (SIDC) wrote: > So is there no way I can do this, even if

Re: [WiX-users] Error 2812 when Navigating Through Custom Dialogs

2010-03-29 Thread Rohit Sharma (SIDC)
Within the custom dialog, have you made sure that the next/back controls are defined, e.g.: ... ... ... ... Rohit -Original Message- From: Vishwajit Walke [mailto:vishwajit.wa...@matrikon.com] Sent: Sunday, March 28, 2010 11:11 PM To: General discussion for Windows Installer XML t

Re: [WiX-users] Wix UI navigation Help

2010-03-29 Thread Rohit Sharma (SIDC)
Can you share the code for your Dlg1 where you have defined the dialog box and controls, should be something like: ... ... -Original Message- From: Sagar [mailto:sagarkavitak...@gmail.com] Sent: Monday, March 29, 2010 1:52 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-

Re: [WiX-users] Wix UI navigation Help

2010-03-30 Thread Rohit Sharma (SIDC)
Hello Sagar Publishing the value for PROCEED or WARNING in DLG1 will help little in navigation. Instead in the main dialog tree (not in dlg1) you need to check this property on the Dlg1 Next button's new dialog event. You will have something like: Change it to: Regards Rohit -Origina

Re: [WiX-users] Show Dialog from Custom Action

2010-03-30 Thread Rohit Sharma (SIDC)
Add .. using System.Windows.Forms; in declarations and then where you want to show the message box, use: MessageBox.Show(); Doesn't that work? Rohit -Original Message- From: Sagar [mailto:sagarkavitak...@gmail.com] Sent: Tuesday, March 30, 2010 3:49 PM To: wix-users@lists.sourcef

Re: [WiX-users] How to use FeaturesDlg

2012-11-06 Thread Rohit Sharma (AIDC)
This should do (&DB_FEAT=3) AND NOT(!DB_FEAT=3) Cheers Rohit -Original Message- From: Miller, Nick (GE Intelligent Platforms) [mailto:nick.mil...@ge.com] Sent: Tuesday, November 06, 2012 7:53 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to use FeaturesDlg

Re: [WiX-users] Any way to build an MSI that will run on both x64 and x86

2013-01-18 Thread Rohit Sharma (AIDC)
It would, using the 32-bit process on 64bit machine. -Original Message- From: Sidharth Vijayachandran [mailto:sidharth.vijayachand...@microsoft.com] Sent: Friday, January 18, 2013 3:51 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Any way to build a

[WiX-users] Update value of newVersion

2012-07-30 Thread Rohit Sharma (AIDC)
Hello I have a web.config which the following entries in the runtime tag: .

[WiX-users] Update value of newVersion

2012-07-30 Thread Rohit Sharma (AIDC)
Hello I have a web.config which the following entries in the runtime tag: .

Re: [WiX-users] Update value of newVersion

2012-07-31 Thread Rohit Sharma (AIDC)
Gentle reminder! -Original Message- From: Rohit Sharma (AIDC) [mailto:rohit.sha...@accelrys.com] Sent: Monday, July 30, 2012 9:32 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Update value of newVersion Hello I have a web.config which the following entries in the

Re: [WiX-users] Update value of newVersion

2012-07-31 Thread Rohit Sharma (AIDC)
Never mind, I fixed it! -Original Message- From: Rohit Sharma (AIDC) [mailto:rohit.sha...@accelrys.com] Sent: Tuesday, July 31, 2012 5:56 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Update value of newVersion Gentle reminder! -Original