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:
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
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
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
>
>
&
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
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.
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
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
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
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'
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
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
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
-----
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
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
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
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,
===
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.
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
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
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-
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
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
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
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
Hello
I have a web.config which the following entries in the runtime tag:
.
Hello
I have a web.config which the following entries in the runtime tag:
.
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
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
29 matches
Mail list logo