[WiX-users] Feature selection and CustomAction commandline

2009-11-18 Thread Arun Perregatturv
Hi, I created a custom dialog for feature selection that has 3 radio button options - 1. Server 2. Workstation 3. DB Server I would like to know which of the feature the user has selected in order to run a customaction with a commandline value. Code looks something like this Feature

Re: [WiX-users] Feature selection and CustomAction commandline

2009-11-19 Thread Arun Perregatturv
Deployment consultant E-Mail: sebast...@instyler.com Instyler Setup - Creating WiX-based MSI installations, elegantly. http://www.instyler.com On 18.11.2009, at 18:19, Arun Perregatturv wrote: Hi, I created a custom dialog for feature selection that has 3 radio button options - 1. Server 2

Re: [WiX-users] Feature selection and CustomAction commandline

2009-11-19 Thread Arun Perregatturv
consultant E-Mail: sebast...@instyler.com Blog: www.sebastianbrand.com On 19.11.2009, at 14:57, Arun Perregatturv wrote: Dialog Id=InstallDlg Width=370 Height=270 Title=!(loc.SetupTypeDlg_Title) NoMinimize=yes Control Id=Next Type=PushButton X=236 Y=243 Width=56 Height=17

Re: [WiX-users] Feature selection and CustomAction commandline

2009-11-20 Thread Arun Perregatturv
consultant E-Mail: sebast...@instyler.com Blog: www.sebastianbrand.com -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Thursday, November 19, 2009 21:23 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Feature

[WiX-users] Bootstrapper sequence in wix

2009-11-23 Thread Arun Perregatturv
I am having problem setting the bootstrapper sequence Following are the sequence I would like to set but it doesn't work that way. 1. Windows Installer 4.5 2. .NET 35 SP1 3. Crystal Reports 10 Runtime 4. SQL Server 2008 Express Here's the code for that Project DefaultTargets=Build

Re: [WiX-users] Feature selection and CustomAction commandline

2009-11-24 Thread Arun Perregatturv
and CustomAction commandline Try changing the first line to: Property Id=SERVERVALUE Value=0 Secure=yes/ and tell us if it works. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Friday, November 20, 2009 10:49 AM To: General discussion for Windows Installer XML

Re: [WiX-users] Select features on UI

2009-11-24 Thread Arun Perregatturv
You are missing the publish event for the value Something like this In the Control id=Next Add Publish Event=Addlocal Value=A![CDATA[(PKGTYPE=A)]]/Publish Publish Event=Remove Value=A![CDATA[NOT(PKGTYPE=A)]]/Publish Add this for each value type. I do this exactly the same

Re: [WiX-users] Bootstrapper sequence in wix

2009-11-30 Thread Arun Perregatturv
. Subject: Re: [WiX-users] Bootstrapper sequence in wix Arun Perregatturv wrote: I am having problem setting the bootstrapper sequence That's not a part of WiX. You might want to post to a .NET Framework newsgroup, as it's the source of the bootstrapper. -- sig://boB http://joyofsetup.com

[WiX-users] Install external program from CDROM drive

2009-12-28 Thread Arun Perregatturv
I searched all over the Wix but couldn't find anywhere how to install application from cdrom drive. I have wix install which should install SQL Server 2008 based on user selection. Say, if user selects client install I don't have to install SQL Server but if he selects Server install then I

Re: [WiX-users] Install external program from CDROM drive

2009-12-28 Thread Arun Perregatturv
Anyone? Arun Perregattur From: Arun Perregatturv Sent: Monday, December 28, 2009 10:15 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Install external program from CDROM drive I searched all over the Wix but couldn't find anywhere how to install application from cdrom

Re: [WiX-users] Install external program from CDROM drive

2009-12-28 Thread Arun Perregatturv
with the specifics of this scenario, so, maybe? -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Monday, December 28, 2009 10:23 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Install external program from CDROM drive

Re: [WiX-users] Install external program from CDROM drive

2009-12-28 Thread Arun Perregatturv
- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Monday, December 28, 2009 11:52 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Install external program from CDROM drive In InstallShield, its very simple I can literally launch any

Re: [WiX-users] Install external program from CDROM drive

2009-12-28 Thread Arun Perregatturv
/02/21/from-msi-to-wix-part-5-custom-actions.aspx) and use [SourceDir] (instead of [cdromdir]). Still, bootstrapper is probably a better choice to install SQL prerequisite. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Monday, December 28, 2009

Re: [WiX-users] Install external program from CDROM drive

2009-12-29 Thread Arun Perregatturv
on the network share, etc.), but be careful - you may get undesired prompts for source. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Monday, December 28, 2009 3:07 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX

Re: [WiX-users] Install external program from CDROM drive

2009-12-29 Thread Arun Perregatturv
. Subject: Re: [WiX-users] Install external program from CDROM drive You shouldn't be doing this from an MSI, but from a bootstrapper. MSIs are not design to run other installers. Try http://dotnetinstaller.codeplex.com. Hope this helps, Cheers dB. -Original Message- From: Arun

Re: [WiX-users] SQL2008 Express Merge Module

2010-02-23 Thread Arun Perregatturv
Use the bootstrapper to include SQL2008. I don't think you will get merge modules of SQL 2008. Arun Perregattur -Original Message- From: John H. Bergman (XPedient Technologies) [mailto:john.berg...@xpedienttechnologies.com] Sent: Tuesday, February 23, 2010 3:21 PM To: General

Re: [WiX-users] Problem installing a .NET installer-based service using InstallUtilLib.dll

2010-02-23 Thread Arun Perregatturv
I do this .NET Service install and it works all the time. ComponentGroup Id=ServicesGroup Component Id=DataService Guid=* Directory=APPLICATION_ROOT_DIRECTORY File Id=DataServiceexe Name=DataService.exe KeyPath=yes Source=$(var.SourceFolder)\DataService.exe /

Re: [WiX-users] Problem installing a .NET installer-based service using InstallUtilLib.dll

2010-02-23 Thread Arun Perregatturv
For our service we set the Account to LocalSystem and works fine. Arun Perregattur -Original Message- From: Rajendra Magar [mailto:rma...@newfrontieradvisors.com] Sent: Tuesday, February 23, 2010 4:44 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re:

Re: [WiX-users] Problem installing a .NET installer-based service using InstallUtilLib.dll

2010-02-23 Thread Arun Perregatturv
: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Tuesday, February 23, 2010 4:55 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Problem installing a .NET installer-based service using InstallUtilLib.dll For our service we set the Account

Re: [WiX-users] SQL2008 Express Merge Module

2010-02-24 Thread Arun Perregatturv
$(registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft sdks\windows\v7@installationfolder)/SDK70A SDKPath$(SDK70A)/SDKPath SDKPath Condition= '$(SDKPath)' == ''C:\Program Files\Microsoft SDKs\Windows\v6.0A\/SDKPath /PropertyGroup -Original Message- From: Arun Perregatturv

Re: [WiX-users] SQL2008 Express Merge Module

2010-02-25 Thread Arun Perregatturv
=Microsoft.Sql.Server.Express.10.0 -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, February 24, 2010 3:35 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] SQL2008 Express Merge Module ItemGroup BootstrapperFile Include

[WiX-users] Conditional FeatureTree Features

2010-03-04 Thread Arun Perregatturv
Hi, I am using WIXUI_FeatureTree with removal of License and including a custom dialog which has 3 radiogroups. Based on the radio group selection I have display the feature set in the feature tree. Is it possible? Let me show. Custom Dialog - Server Database Server COM Server

Re: [WiX-users] Conditional FeatureTree Features

2010-03-08 Thread Arun Perregatturv
: Thursday, March 04, 2010 8:56 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Conditional FeatureTree Features On 3/4/2010 3:17 PM, Arun Perregatturv wrote: I am using WIXUI_FeatureTree with removal of License and including a custom dialog which has 3 radiogroups. Based

Re: [WiX-users] InstallShield 2010 vs InstallAware 9

2009-11-12 Thread Arun Perregatturv
I have and am using InstallShield 2009 for our existing product but for new product I started using Wix and there are some good and bad about each Installer. InstallShield - Good : Visual editor, scripting (by the way it is readable) Bad: Pricy, can't add newer technology

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
a Tools subfolder under the Test App 1.0 folder you created so nothing will be installed there. Not sure why the RemoveFiles doesn't work. Did you get the spelling correct on the file names? -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
the RemoveFiles doesn't work. Did you get the spelling correct on the file names? -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, December 31, 2008 1:05 PM To: wix-users (wix-users@lists.sourceforge.net) Subject: [WiX-users] Wix Sub

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
DllEntry=WixShellExec Impersonate=yes/ /Product Thanks, Arun Perregattur -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, December 31, 2008 5:19 PM To: General discussion

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
the log is verbose. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, December 31, 2008 2:34 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Wix Sub Folders Install This is the error I get. MSI (c) (0C:14

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
in the directory you specified in the xml and not some other directory. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, December 31, 2008 2:57 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Wix Sub

[WiX-users] Multiple Wix files reference

2009-01-03 Thread Arun Perregatturv
Hi I am planning to use multiple wix files for the project. Here's my Wix project structure that I would like to attain 1. WixMainProgram - this file will have all the directory assignment and Feature settings and custom actions. Directory Id=ProgramFilesFolder

Re: [WiX-users] Multi-project development

2009-01-06 Thread Arun Perregatturv
Reese, We have exactly the same situation as yours. We have Database Server/Server/Web Server/Client Installation. The way I did before wix was to create individual installers for each of the Installation type. That was a disaster because if I had to fix something that's common to all then I

Re: [WiX-users] Reinstallation of Modified MSI

2009-01-06 Thread Arun Perregatturv
Rob, I have the same situation, how do I detect and silently uninstall old version and reinstall new version.(code snippet would be helpful). Thanks, Arun Perregattur -Original Message- From: Rob Mensching [mailto:rob.mensch...@microsoft.com] Sent: Monday, January 05, 2009 11:19 PM

Re: [WiX-users] Reinstallation of Modified MSI

2009-01-06 Thread Arun Perregatturv
of Modified MSI Look for examples of Major Upgrade. Lots of resources out there. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Tuesday, January 06, 2009 09:25 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users

Re: [WiX-users] Reinstallation of Modified MSI

2009-01-06 Thread Arun Perregatturv
of Modified MSI http://www.letmegooglethatforyou.com/?q=wix+major+upgrade -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Tuesday, January 06, 2009 09:42 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Reinstallation

Re: [WiX-users] Multi-project development

2009-01-06 Thread Arun Perregatturv
Brian, You are absolutely right, but I am in the process moving from a single install shield package to a more flexible Msi modules using Wix with one Setup.exe which is created in C# which does the initial Prerequisite installs(such as .NET Framework/SQL Server) and use a CommandLine to

Re: [WiX-users] Multi-project development

2009-01-07 Thread Arun Perregatturv
/blog/archive/2008/06/06/Proposed-adjustments-the-WiX-v2-and-WiX-v3-roadmap.aspx Brian Rogers Intelligence removes complexity. - Me http://icumove.spaces.live.com On Tue, Jan 6, 2009 at 2:39 PM, Arun Perregatturv aperregatt...@napcosecurity.com wrote: Brian, You are absolutely right, but I

Re: [WiX-users] Multi-project development

2009-01-07 Thread Arun Perregatturv
with that priority. A bootstrapper is really not that hard to write to start with. Arun Perregatturv wrote: Brian, I would vote for Burn to kick start sooner than other things. The most important thing for any or all installer is the BootStrapper without that installing will be very difficult. As I

Re: [WiX-users] Defining components and Files in Wix Installer.

2009-01-07 Thread Arun Perregatturv
How about ComponentGroup? How many components can I have per ComponentGroup? Because I have 4 componentgroups with each having atleast 40-50 components and each component have just 1 file. Arun Perregattur -Original Message- From: Rob Mensching [mailto:rob.mensch...@microsoft.com]

Re: [WiX-users] Issue Regarding Install on mapped/shared drives.

2009-01-07 Thread Arun Perregatturv
I have used both InstallSheild for Windows Installer and Installshield Projects(which uses its own Installer). Installing on a Mapped Drive Windows Installer version did not work but the other one worked. I was able to install once on a Mapped drive using Windows Installer version but had

[WiX-users] Wix 3.0.4909.0

2009-01-12 Thread Arun Perregatturv
Can I download and use Wix version 3.0.4909? Last updated was Jan 09 -2009 Thanks, Arun Perregattur -- This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story.

[WiX-users] SQL Server 2008 Bootstrapper

2009-01-13 Thread Arun Perregatturv
Is there SQL Server 2008 Express Bootstrapper available. http://wix.sourceforge.net/manual-wix3/install_dotnet.htm the above link helped me to install Framework 3.5 and Windows Installer 3.1 now I am looking to for SQL Server 2008 Express. Please let me know where I can find one. Thanks,

Re: [WiX-users] SQL Server 2008 Bootstrapper

2009-01-13 Thread Arun Perregatturv
2008 Bootstrapper If you have Visual Studio it includes a Bootstrapper for SQL Server 2005 (C:\Program Files\Visual Studio 8\SDK\v2.0\Bootstrapper) -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Tuesday, January 13, 2009 10:28 PM To: General

Re: [WiX-users] SQL Server 2008 Bootstrapper

2009-01-14 Thread Arun Perregatturv
... but not in the patches. Here's a workaround from the Express team blog: http://blogs.msdn.com/sqlexpress/archive/2008/09/12/faq-installing-the-sql-server-2008-express-clickonce-bootstrapper-for-visual-studio-2008-sp1.aspx HTH, Arun. -Original Message- From: Arun Perregatturv

Re: [WiX-users] SQL Server 2008 Bootstrapper

2009-01-14 Thread Arun Perregatturv
what you'd like to see in the future: http://connect.microsoft.com/VisualStudio -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, January 14, 2009 05:52 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users

Re: [WiX-users] SQL Server 2008 Bootstrapper

2009-01-15 Thread Arun Perregatturv
Instance but it installs as a SQLExpress named instance. Anyone encountered this problem. Thanks, Arun Perregattur -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, January 14, 2009 12:38 PM To: General discussion for Windows Installer XML

Re: [WiX-users] (no subject)

2009-01-19 Thread Arun Perregatturv
Try this, I have able to get it working for SQLExpress 2008 with VS2008. It copies to local folder. Project DefaultTargets=Build xmlns=http://schemas.microsoft.com/developer/msbuild/2003; ItemGroup BootstrapperFile Include=Microsoft.Net.Framework.3.5.SP1 ProductName.NET Framework

[WiX-users] RadioButtons and Feature

2009-01-19 Thread Arun Perregatturv
I am confused on how to set a feature to a Radiobutton selection. I have 4 Features 1. Feature1 2. Feature2 3. Feature3 4. Feature4 I copied WixUI_Mondo and modified to include my custom Dialog which has 4 radiobuttons and one checkbox. Now, I can compile and run and even see the dialog

Re: [WiX-users] RadioButtons and Feature

2009-01-20 Thread Arun Perregatturv
-Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: den 19 januari 2009 18:08 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] RadioButtons and Feature I am confused on how to set a feature to a Radiobutton selection. I have

Re: [WiX-users] WiX custom dialogs insight.

2009-01-21 Thread Arun Perregatturv
You can check these links http://dizzymonkeydesign.com/blog/misc/adding-and-customizing-dlgs-in-wix-3/ http://blog.wharton.com.au/2007/06/windows-installer-xml-wix-30-snippets.html http://www.wixwiki.com/index.php?title=Main_Page http://www.tramontana.co.hu/wix/index.php The last link would

Re: [WiX-users] RadioButtons and Feature

2009-01-21 Thread Arun Perregatturv
[NOT (INSTALLTYPE=ServerFeature)]]. I use CDATA as I sometimes use not equal to in my conditions. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: den 20 januari 2009 20:29 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users

Re: [WiX-users] candle.exe and light.exe source code

2009-01-21 Thread Arun Perregatturv
From here http://sourceforge.net/project/showfiles.php?group_id=105970package_id=16 Arun Perregattur -Original Message- From: sam desilva [mailto:sam.desilv...@gmail.com] Sent: Wednesday, January 21, 2009 1:22 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] candle.exe

[WiX-users] BootStrapper log question

2009-01-26 Thread Arun Perregatturv
I added SQL 2008 to BootStrapper and it works on new Install. But when I try to install on a system that already has SQL 2008 installed, it tries to re-install again, I can't find where the problem might be Can someone help? This is the code in package.xml - I have added registry check for SQL

Re: [WiX-users] BootStrapper log question

2009-01-26 Thread Arun Perregatturv
I was able to resolve this issue. Thanks, Arun Perregattur -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Monday, January 26, 2009 9:15 AM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] BootStrapper log question

Re: [WiX-users] When to use a bootstrapper

2009-01-30 Thread Arun Perregatturv
I had a similar situation and this is how I was able to resolve. Our products requires SQL 2008 and I used wix installer and with Bootstrapper to install SQL 2008 and after installing SQL 2008 we install our product after the products gets installed before the finish dialog, I execute a custom

[WiX-users] Wix for IIS 7

2009-02-09 Thread Arun Perregatturv
Does Wix setup support IIS 7? We are planning to port existing ASP.NET project written in VS setup to Wix in order to get support for Vista and Win 2008, is it worth porting the project to get the support or use IIS6 compatibility mode? Currently, our ASP.NET projects works fine on IIS 6 but

Re: [WiX-users] Wix for IIS 7

2009-02-09 Thread Arun Perregatturv
. Subject: Re: [WiX-users] wix and IIS7 I'm still trying to get the IIS team to recognize they have no reasonable deployment story for MSI. And I would guess you won't be able to now that they seem to be focusing on MS Deploy. Neil -Original Message- From: Arun Perregatturv [mailto:aperregatt

Re: [WiX-users] Wix for IIS 7

2009-02-09 Thread Arun Perregatturv
is unsatisfactory (assuming you agree). They've continued to punt MSI Interop because they do not believe there is enough customer need. Or at least that is one reason I've been given. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Monday, February

Re: [WiX-users] Visual Dialog Development

2009-02-11 Thread Arun Perregatturv
I would like to vote for this feature. if needed I can help in developing. VS Plugin something like Orca look and feel. Arun Perregattur -Original Message- From: eseeR [mailto:0x000...@gmail.com] Sent: Wednesday, February 11, 2009 1:49 PM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Visual Dialog Development

2009-02-12 Thread Arun Perregatturv
, February 11, 2009 6:31 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Visual Dialog Development something like Orca look and feel Really, what that bad :-) -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: 11

Re: [WiX-users] Visual Dialog Development

2009-02-12 Thread Arun Perregatturv
things better... Best Regards, Tim - Oorspronkelijk bericht - Van : Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Verzonden : donderdag , februari 12, 2009 03:01 PM Aan : 'General discussion for Windows Installer XML toolset.' Onderwerp : Re: [WiX-users] Visual

Re: [WiX-users] Visual Dialog Development

2009-02-13 Thread Arun Perregatturv
to go investigate them. Creating a full blown editing UI for the WIX toolset isn't something we're particularly interested in doing here right now. Too many other things to work through... -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Thursday

[WiX-users] Custom Action on Finish Dialog

2009-02-26 Thread Arun Perregatturv
I am trying to execute this Custom action and its not working. I want the finish dialog to have a checkbox which says do not restart computer. If its unchecked(which is default) then restart the computer. UI UIRef Id=WixUI_Mondo/ Publish Dialog=ExitDialog Control=Finish

Re: [WiX-users] Bootstapper in VS 2008

2009-03-03 Thread Arun Perregatturv
This might help you even though it's for VS 2005 but this will work with VS2008. I was able to get Windows Installer 4.5, NET35 SP1, SQL 2008,VC++2005 Runtimes and Crystal Reports 10.5. http://msdn.microsoft.com/en-us/library/aa730839(VS.80).aspx#custompkg_creatingaproductmanifest Arun

Re: [WiX-users] Setting up SOAP, Crystal Reports, etc.

2009-03-09 Thread Arun Perregatturv
I was able to install Crystal Reports with Wix. Arun Perregattur -Original Message- From: MacDiarmid, James D [mailto:james.macdiar...@eds.com] Sent: Monday, March 09, 2009 11:24 AM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Setting up SOAP, Crystal

Re: [WiX-users] Setting up SOAP, Crystal Reports, etc.

2009-03-09 Thread Arun Perregatturv
: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Monday, March 09, 2009 11:51 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Setting up SOAP, Crystal Reports, etc. I was able to install Crystal Reports with Wix. Arun Perregattur -Original

Re: [WiX-users] Wix Coder forums

2009-04-24 Thread Arun Perregatturv
I think I like the idea of forums. Categories like Announcements Bootstrappers HOW-TO Articles Wix 2.0 Issues Wix 3.0 Issues Heat Issues Votive Issues And many more.. This will make it easier for users to go to specific forum to find their problem related answers rather than one main list for