[WiX-users] Transform xsl does not indent

2011-02-16 Thread sangeeta1
Hi, I am passing Transform xls to Heat.exe command to generate a fragment wxs source file. The xsl has the indent attribute set to "yes" and yet the output wxs file does not show indentation. Any idea what's the right way to indent the output wxs file? http://www.w3.org/1999/XSL/Transform"; x

[WiX-users] Running wix tools on non-english windows.

2011-02-09 Thread sangeeta1
Hi, Is it possible to run Heat.exe, Candle.exe and light.exe on a non-english windows system? I have a .net program that harvests a set of files using Heat.exe, compiles them using Candle.exe and links them using light.exe. I am wondering if I run this program on a non-english system, will it

Re: [WiX-users] Custom Browse Dialog

2010-12-17 Thread sangeeta1
No, I will be taking a look at it a bit later. I am planning to implement it in c++ custom action. will post the code once i get to it. On Fri, Dec 17, 2010 at 12:06 PM, kim [via Windows Installer XML (WiX) toolset] > wrote: > Hi Sangeeta1 > > Did you got the customise file

Re: [WiX-users] Running vbscript in customaction

2010-12-16 Thread sangeeta1
> Software Developer - Staff > Electronic Banking Services > Fiserv > Office: 503-746-0643 > Fax: 503-617-0291 > www.fiserv.com > Please consider the environment before printing this e-mail > > > -Original Message- > > From: sangeeta1 [mailto:[hidd

Re: [WiX-users] Running vbscript in customaction

2010-12-16 Thread sangeeta1
;> DEBUG: Error 2896: Executing action CheckUserExists failed. >> The installer has encountered an unexpected error installing this package. >> >> This may indicate a problem with this package. The error code is 2896. The >> >> arguments are: CheckUserExists, , >

Re: [WiX-users] Check if user exists in UI

2010-12-16 Thread sangeeta1
objCommand.Execute > If objRecordset.RecordCount = 0 Then > Session.Property("USEREXISTS") = 1 > Else > CheckUserExists = msiDoActionStatusSuccess > End If > > objConnection.Close > End > > Edwin G. Castro > Software Develo

Re: [WiX-users] Running vbscript in customaction

2010-12-16 Thread sangeeta1
t; This may indicate a problem with this package. The error code is 2896. The > arguments are: CheckUserExists, , > Action ended 11:42:49: WelcomeDlg. Return value 3. > > > On Wed, Dec 15, 2010 at 11:11 PM, Wilson, Phil-2 [via Windows Installer > XML (WiX) toolset] > > > wr

Re: [WiX-users] Check if user exists in UI

2010-12-16 Thread sangeeta1
dB. @ dblock.org > Moscow|Geneva|Seattle|New York > > -----Original Message- > From: sangeeta1 [mailto:[hidden > email]<http://user/SendEmail.jtp?type=node&node=5843173&i=0>] > > Sent: Wednesday, December 15, 2010 12:57 PM > To: [hidden email] <http:/

Re: [WiX-users] Running vbscript in customaction

2010-12-16 Thread sangeeta1
no WScript object in Windows Installer. As its name implies, the > Wscript object is supplied by the Windows Script Host environment, and > you're not running in there. Just use CreateObject(). > > Phil Wilson > > -Original Message- > From: sangeeta1 [mailto:[hidden > e

Re: [WiX-users] Check if user exists in UI

2010-12-15 Thread sangeeta1
Hi, I have a vbscript to validate the user in AD and I am having trouble running it in the custom Action. Can someone point out mistakes in implementing the custom action. I am not a vbscript expert here so please pardon my ignorance. log Action 11:42:48: CheckUserExists. Action start 11:

[WiX-users] Running vbscript in customaction

2010-12-15 Thread sangeeta1
Hi, I have a vbscript to validate the user in AD and I am having trouble running it in the custom Action. Can someone point out mistakes in implementing the custom action. I am not a vbscript expert here so please pardon my ignorance. log Action 11:42:48: CheckUserExists. Action start

[WiX-users] Running VBScript in Custom Action

2010-12-15 Thread sangeeta1
Hi, I have a vbscript to validate the user in AD and I am having trouble running it in the custom Action. Can someone point out mistakes in implementing the custom action. I am not a vbscript expert here so please pardon my ignorance. log Action 11:42:48: CheckUserExists. Action start 11:

[WiX-users] Validation check on UI fields

2010-12-13 Thread sangeeta1
To elaborate more on my problem with some code sample: I have username and domain fields on UI dialog and I want to check if the user exists in the domain before the installation continues any further. So, in the Finish control of dialog, I inserted events to run CustomActions as shown below. To

[WiX-users] Check if user exists in UI

2010-12-12 Thread sangeeta1
Hi, I would like to check if a user exists in AD domain when username, domain, password are entered in input dialog fields. Can (and how) I use to check if a user exists or will I have to write managed custom action to search for directoryEntry in AD? Can some one provide pointers on how to ch

Re: [WiX-users] Custom Browse Dialog

2010-12-12 Thread sangeeta1
Did you find an example for the custom file open dialog? I am looking for one too. I read in one of the posts to create a custom C++ CA for fileopen. I dont really know much about writing custom actions in native code and would like an example to start with. thanks. On Fri, Dec 10, 2010 at 3:08 PM

Re: [WiX-users] Heat.exe - How to pass Product Manufacturer, Name, Title, version

2010-12-10 Thread sangeeta1
t; Software Developer - Staff > Electronic Banking Services > Fiserv > Office: 503-746-0643 > Fax: 503-617-0291 > www.fiserv.com > Please consider the environment before printing this e-mail > > > -Original Message- > > From: sangeeta1 [mailto:[hidden &g

Re: [WiX-users] Heat.exe - How to pass Product Manufacturer, Name, Title, version

2010-12-10 Thread sangeeta1
Windows Installer XML (WiX) toolset] > wrote: > Add xmlns:wix="http://schemas.microsoft.com/wix/2006/wi"; in the root > element of your XSLT and change your template to: > > > $(var.ProductName) > > > > -Original Message- > From: sang

Re: [WiX-users] Heat.exe - How to pass Product Manufacturer, Name, Title, version

2010-12-10 Thread sangeeta1
.fiserv.com > Please consider the environment before printing this e-mail > > > -Original Message- > > From: sangeeta1 [mailto:[hidden > > email]<http://user/SendEmail.jtp?type=node&node=5820142&i=0>] > > > Sent: Wednesday, December 08, 2010 8:47 PM > &

[WiX-users] Question on parsing wix file using XmlDocument.

2010-12-09 Thread sangeeta1
I am trying to get a node value from SelectSingleNode() by passing a xpath query but keep getting null. XmlDocument doc = new XmlDocument(); doc.Load(@"c:\temp\MySource.wxs"); XmlElement root = doc.DocumentElement; root.SelectSingleNode("produ...@manufacturer]"); returns null Can som

Re: [WiX-users] Heat.exe - How to pass Product Manufacturer, Name, Title, version

2010-12-08 Thread sangeeta1
; > > > > > > Notice that File/@Source="$(var.CodeDir)\code\test.txt" just like the > documentation says. > > In a element is *not* generated in either example. > > Edwin G. Castro > Software Developer - Staff > Electroni

Re: [WiX-users] Heat.exe - How to pass Product Manufacturer, Name, Title, version

2010-12-08 Thread sangeeta1
> > > > > Notice that File/@Source="$(var.CodeDir)\code\test.txt" just like the > documentation says. > > In a element is *not* generated in either example. > > Edwin G. Castro > Software Developer - Staff > Electronic Banking Se

[WiX-users] Heat.exe - How to pass Product Manufacturer, Name, Title, version

2010-12-08 Thread sangeeta1
Hi all, I am trying to generate a wxs source file using Heat.exe and wanted to check if I can pass values for Manufacturer, Name, Title and version to heat.exe? I tried using -var argument, but does nt seem to update it to the source file heat.exe dir c:\temp\Configuration\Files -ag -cg MyCom

Re: [WiX-users] uninstall not removing files

2010-12-08 Thread sangeeta1
ww.fiserv.com > Please consider the environment before printing this e-mail > > > -Original Message- > > From: sangeeta1 [mailto:[hidden > > email]<http://user/SendEmail.jtp?type=node&node=5816411&i=0>] > > > Sent: Wednesday, December 08, 2

Re: [WiX-users] uninstall not removing files

2010-12-08 Thread sangeeta1
I have a fundamental question here: I was considering retaining the PackageCode in the updated MSI. Can some one advice if it is not advisable to have the same package code on the modified MSI? thanks, sangeeta -- View this message in context: http://windows-installer-xml-wix-toolset.687559

Re: [WiX-users] uninstall not removing files

2010-12-08 Thread sangeeta1
t > makes a difference whether you're on an unspoiled test system or not. Use > virtual machines! > > Phil Wilson > > > -Original Message- > From: sangeeta1 [mailto:[hidden > email]<http://user/SendEmail.jtp?type=node&node=5816105&i=0>

[WiX-users] uninstall not removing files

2010-12-08 Thread sangeeta1
Hi all, I have a wix generated installer that I am programmatically tweaking to add new files. I am having trouble removing files on uninstalling the modified installer. I am using Windows installer