Re: [WiX-users] How to refer WIX properties within .wxs files

2010-09-20 Thread Vishwajit Walke
Thanks Nick. It worked for me !! -Vishwajit -Original Message- From: Nick Ramirez [mailto:nickra...@hotmail.com] Sent: Thursday, September 16, 2010 7:31 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to refer WIX properties within .wxs files Oops. Replace Value="[V

[WiX-users] How to refer WIX properties within .wxs files

2010-09-15 Thread Vishwajit Walke
Hi, There is a specific requirement of copying a xml file "ClientAccessPolicy.xml" to the path "C:\Inetpub\wwwroot\wss\VirtualDirectories\InstallationPortNumber". The only thing I'm stuck at is how to refer the WIX Property "INSTALL_SHAREPOINT_PORT" in the highlighted region below :

[WiX-users] How to fire a Custom Action on Radio Button Click Event

2010-05-31 Thread Vishwajit Walke
Hi, I'm designing a custom dialog in which I do have a RadioButtonGroup and a ComboBox Control. I want to bind certain data from my custom action to the ComboBox Control on "Radio Button Change Event". Is it possible to trigger my custom action whenever I changed the selection in RadioButtonGro

Re: [WiX-users] Bootstrapper

2010-05-04 Thread Vishwajit Walke
m.br] Sent: Tuesday, May 04, 2010 4:32 PM To: 'General discussion for Windows Installer XML toolset.' Subject: [WiX-users] FW: Bootstrapper How Do I modify? -- Carolina Zuqueto Amaral tel: +55 21 2494-5476 cel: +55 21 9524-7186 email: carolina.ama...@conv.com.br -Original Message-

Re: [WiX-users] Bootstrapper

2010-05-04 Thread Vishwajit Walke
Modify your bootstrapper to look the registry keys in WOW6432Node. This might be useful : http://msdn.microsoft.com/en-us/library/aa384129(VS.85).aspx Vishwajit -Original Message- From: Carolina Zuqueto Amaral [mailto:carolina.ama...@conv.com.br] Sent: Tuesday, May 04, 2010 3:57 PM To:

[WiX-users] How To Skip Custom Dilalog On Repair ?

2010-05-02 Thread Vishwajit Walke
Hi, I've custom dialog in my wix3.0 project. My requirement is to skip the occurrence of this Custom Dialog on Repair. It should be visible only at Fresh Installation. [Condition to check Fresh Installation only and not Repair] Any help on this would be much appreciated. Thanks. Vishwajit.

Re: [WiX-users] Text Field Validation in Wix Custom Dialog

2010-04-21 Thread Vishwajit Walke
control instead. wix.sourceforge.net/manual-wix3/wix_xsd_control.htm http://msdn.microsoft.com/en-us/library/aa369797(VS.85).aspx Sascha On Wed, Apr 21, 2010 at 6:29 AM, Vishwajit Walke wrote: > Hi, > > I've a text box in my custom dialog and I just need a small validation on it &

[WiX-users] Binding ListItems to Combo Box From Custom Action DLL

2010-04-21 Thread Vishwajit Walke
Hi, I'm using a combo box control in my custom dialog. I need to fill out the List Items in this combo box with the result coming from my Custom Action. My Custom Action is written in C# and it returns me the names of all IIS hosted web sites. Any thoughts ? Thanks. Vishwajit

[WiX-users] Text Field Validation in Wix Custom Dialog

2010-04-20 Thread Vishwajit Walke
Hi, I've a text box in my custom dialog and I just need a small validation on it and that is I want to restrict it 5 Integers only. Basically I'm entering a Port Number through this field. Any Thoughts ? Here is my control syntax : Thanks. Vishwajit READER B

[WiX-users] Customizing the dialog sequencing to form loops

2010-04-16 Thread Vishwajit Walke
Hi, I'm facing some issues when trying to loop the execution of my custom dialogs. To be very specific, here is the sequence which I need to follow : LicenseDlg -> SharePointversionDlg -> SharePointWebAppPortDlg -> Initiates Spawn dialog on certain condition -> PortNotAvailableDlg >From this S

[WiX-users] Detecting .Net Framework 3.5 Installed Or Not to skip the Custom Dialog.

2010-04-14 Thread Vishwajit Walke
On the similar lines can I detect the .Net Framework Installed or not ? From: Vishwajit Walke Sent: Wednesday, April 14, 2010 9:27 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Detecting ASP.Net Extensions Installed Or Not to skip the Custom Dialog. Hi, I&#

[WiX-users] Detecting ASP.Net Extensions Installed Or Not to skip the Custom Dialog.

2010-04-14 Thread Vishwajit Walke
Hi, I'm done with the IIS 6.0 Detection through Wix 3.0 (IISMAJORVERSION="#6"). On the similar lines, can I check for ASP.Net Extensions ? Thanks. Vishwajit. READER BEWARE: Unencrypted, unsigned Internet e-mail is inherently insecure. Internet messages may

Re: [WiX-users] How To Pass Status Variables from a Custom Action to Wix Custom Dialog

2010-04-08 Thread Vishwajit Walke
port number is available or not. Thanks, Vishwajit From: Vishwajit Walke Sent: Thursday, April 08, 2010 4:32 PM To: 'General discussion for Windows Installer XML toolset.' Subject: How To Pass Status Variables from a Custom Action to Wix Custom Dialog Hi Everyone, I've a specific req

[WiX-users] How To Pass Status Variables from a Custom Action to Wix Custom Dialog

2010-04-08 Thread Vishwajit Walke
Hi Everyone, I've a specific requirement of checking whether a particular port is occupied by a web application through Wix 3.0. I've written a custom action dll in C# for this purpose and it returns ActionResult.Success and ActionResult.Failure depending on Port Occupied or Not. When ActionRe

Re: [WiX-users] IIS 6.0 Detection to Skip the Custom Dialog Occurrence

2010-04-07 Thread Vishwajit Walke
Hi, Is it possible to extend this condition to detect the version of IIS installed is 6 AND greater than 6 ? Currently, I'm able to detect the version # 6 with this. Just wanted to make this condition flexible so as to run on any platform having different versions of IIS. Vishwajit -Origi

Re: [WiX-users] IIS 6.0 Detection to Skip the Custom Dialog Occurrence

2010-04-07 Thread Vishwajit Walke
Thanks. It saved my lot of googling time. Much Appreciated !! Vishwajit -Original Message- From: pmdarrow [mailto:pdar...@metaworks.com] Sent: Wednesday, April 07, 2010 7:03 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] IIS 6.0 Detection to Skip the Custom Dialog Occurre

[WiX-users] IIS 6.0 Detection to Skip the Custom Dialog Occurrence

2010-04-06 Thread Vishwajit Walke
Hi, I'm a beginner to Wix v3.0. I'm working on the Custom Dialog to accept the Web Application Name and the Port Number. I've written a Custom Action dll which checks whether a web application exists on a specific port number and I'm triggering this custom action on "Next" Button Click in my c

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

2010-03-30 Thread Vishwajit Walke
PM, Vishwajit Walke wrote: > Event="Newdialog" Value="SharepointVersion">1 > ... > Note : The error description for the code 2812 is "The event[2] is not > recognized" in the Windows Installer Error Message Table. > Events are cas

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

2010-03-29 Thread Vishwajit Walke
] Error 2812 when Navigating Through Custom Dialogs 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

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

2010-03-28 Thread Vishwajit Walke
Hi All, I'm facing an issue on clicking the "Next / Back" Button within the Custom Dialog in Wix3.0. It breaks the further MSI execution with the following error : "The Installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The err

[WiX-users] Troubleshooting erro 2812 with custom wix dialogs

2010-03-28 Thread Vishwajit Walke
Hi, I've created a custom dialog and published the same at appropriate sequence in Wix3.0. I can see this custom dialog invoking with the Controls included. The only problem I'm facing is on clicking the "Next / Back" Button within this custom dialog breaks the further MSI execution. Here is th

Re: [WiX-users] How to handle Registry Redirection through WIX on64-bit Platform

2010-01-13 Thread Vishwajit Walke
d Luck. Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the ** Integrated Environmental Solutions Limited. Registered in Scotland No. SC151456 Registered Office - Helix B

[WiX-users] How to handle Registry Redirection through WIX on 64-bit Platform

2010-01-13 Thread Vishwajit Walke
Hi, I'm facing issues while fetching the Installation Path of a 64-bit component through its Registry Entry on 64-bit Platform. Through WIX, when I'm searching for a particular registry key, because of registry redirection it is redirected to WOW6432node where registry keys doesn't exist. So,

[WiX-users] Platform Identification in WIX 3.0

2009-12-02 Thread Vishwajit Walke
Hi, I am facing issues when migrating the managed code from x86 to x64 platform. I have a WIX project to create a MSI which will be executed through Bootstrapper. On x86 Platform, files get copied in "Program Files" as per the Project.wxs file. But if the same MSI is installed on x64 Platform t