[WiX-users] Setting all components to 64-bit by default...

2007-01-12 Thread Ravikumar Gopinath
Hi, By default, WIX treats all components as 32-bit. Our installation package will install either 32 bits or 64-bits binaries and we don’t have any mixed files going into separate directories. Is it possible to mark all components as 64-bit? Without this, I would have to go to each individual

[WiX-users] Setting Port value through property...

2007-01-14 Thread Ravikumar Gopinath
I need to set the Port and description value of a website based on user's input. I am trying to use a property, but the install fails. If I was using a CustomTable, I could have used session.FormatString method. However, since this is a wix defined table, I am not sure how to tell it to format

Re: [WiX-users] Setting Port value through property...

2007-01-14 Thread Ravikumar Gopinath
It doesn't appear to work. I am trying to do the following: Property id=WebSitePort value=[PUBLICSITEPORT] / And this property is used in the IIS:Website table as this value can be set by other setup packages too whcih include this wxs file. iis:WebSiteId=MyWebServer

Re: [WiX-users] Setting Port value through property...

2007-01-14 Thread Ravikumar Gopinath
a number. Why don’t you do: iis:WebAddress Id=”SitePort” Port=”[PUBLICSITEPORT]”/ Or you could use a Type 51 Customaction to set the WebSitePort Property to the value of the PUBLICSITEPORT Property. From: Ravikumar Gopinath [mailto:[EMAIL PROTECTED] Sent: Sunday, January 14, 2007 3:51 PMTo

[WiX-users] Platforms attribute of Package element...

2007-01-18 Thread Ravikumar Gopinath
Hi, I need to set the Platforms attribute of Package element to either 64-bit or default(platform independent) during build. Is Intel the default value for Platforms attribute? Thanks Ravi- Take Surveys. Earn Cash.

[WiX-users] Virtual Directories not getting created on IIS 7.0 ...

2009-06-04 Thread Ravikumar Gopinath
Our Msi works fine on IIS 6.0. It creates virtual directories and configures web sites with right port, SSL cert etc. However, when we run the same on IIS 7.0, the virtual directories aren't getting created. I verified that the IIS 6.0 compatability pack is installed on our windows server 2008

[WiX-users] Settting AppPools to Integrated mode in IIS 7.0

2009-06-09 Thread Ravikumar Gopinath
I am trying to install a web application, and the app pools created as part of the installation process is being set to Classic type on Windows server 2008 box with IIS 7.0. The documentation doesn't say anything about setting the app pool type to Integrated mode. How can I set the app pool to

[WiX-users] Error using WindowsVolume predefined folder...

2009-07-23 Thread Ravikumar Gopinath
I need to get the system drive of the target machine during installation. WindowsVolume appears to do that . So I am trying to use the predefined property WindowsVolume like this: Directory Id=TARGETDIR Name=SourceDir Directory Id=WindowsVolume ... /Directory /Directory When I try

[WiX-users] Clearing values from App pool...

2009-08-17 Thread Ravikumar Gopinath
Our servers currently have values set for virtual memory and Private memory limits for recycling the app pools. We do it through the MSIs. Now, I want to clear those values. If I just remove the values from the iis:WebAppPool element, the old values don't get removed. How do I remove the old

[WiX-users] Giving user permission to log on as batch job during setup...

2009-01-13 Thread Ravikumar Gopinath
How can I give a user account permission to log on as batch job during setup? ThanksRavi -- This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story.

[WiX-users] AspnetCompiler task...

2009-01-15 Thread Ravikumar Gopinath
I am using the AspNetCompiler task to build our asp.net project. I have the Force attribute set to True. If I set it false, will it compile only if the files are changed, or will it not compile if the target directory is present ( irrespective of files changed or not) ? Thanks Ravi

[WiX-users] Selecting log settings for IIS ...

2009-02-11 Thread Ravikumar Gopinath
On our websites, we want to select the properties to log, like Host( cs-host), bytes sent etc. How can we set this properties through Wix? Thanks Ravi -- Create and Deploy Rich Internet Apps outside the browser with

[WiX-users] Permission element and setting permissions on folder...

2007-02-26 Thread Ravikumar Gopinath
I want to set the following permissions on my folder: read execute, list contents, read, write, modify. How do I set these permissions? The Permission element has GenericAll which gives full control. Setting both GenericRead=yes and GenericWrite=yes gives read write permissions only, but

[WiX-users] Permission element and setting permissions on folder...

2007-02-28 Thread Ravikumar Gopinath
I want to set the following permissions on my folder: read execute, list contents, read, write, modify. How do I set these permissions? The Permission element has GenericAll which gives full control. Setting both GenericRead=yes and GenericWrite=yes gives read write permissions only,

[WiX-users] Including cab file within MSI...

2007-06-26 Thread Ravikumar Gopinath
I have a couple of cab files which contains quite a few files within them. I want to include the cab files in my installer and unpack the cab files during install, and delete those unpacked files during uninstall. Is it possible to do this? If so, how can I do it? Thanks

Re: [WiX-users] Including cab file within MSI...

2007-06-26 Thread Ravikumar Gopinath
Thanks Mike, that's exactly what I needed. I have multiple cab files though, and I will see if I can embed multiple cab files in the MSI. If I set the Media element to point to the cab file and set the id on the media element, I would have to specify this id in the DiskId for the File element,

Re: [WiX-users] Including cab file within MSI...

2007-08-04 Thread Ravikumar Gopinath
I am still not able to get wxs to read the source files from a cab file. I have the following lines in my wxs file: Media Id='1' Cabinet='themes1.cab' EmbedCab='no' / Directory Id=directory1 DiskId=1 ShortName=ACCOUN_1 Name=Accounting Component Id=component0 DiskId=1

[WiX-users] XmlConfig and XmlFile...

2007-10-08 Thread Ravikumar Gopinath
What is the difference between XmlConfig and XmlFile elements? Is XmlConfig used to add/modify/delete both elements and attributes from xml files and XmlFile used to add/modify/delete attributes only from xml files? I need to install a xml file and then delete some of its elements based on

Re: [WiX-users] XmlConfig and XmlFile...

2007-10-09 Thread Ravikumar Gopinath
I am trying to use XmlConfig to delete an element from a xml file which was installed as part of same package. but that isn't working. If I try to modify an attribute using XmlFile for same ElementPath, it works fine. Am I missing something here? my code: Component

[WiX-users] Setting webdir properties for directory under virtual directory...

2007-10-18 Thread Ravikumar Gopinath
I need to set content expiration property ( Cache-Control: max-age=31536000 ) on a directory, which is under a virtual directory. I am trying to set it using the WebDirProperties element. My code is given below: iis:WebDirProperties Id=CacheForOneYear CacheControlMaxAge=31536000/ I am

[WiX-users] Setting security permissions for a directory...

2008-01-29 Thread Ravikumar Gopinath
How can I set the security permissions for a directory? The util:PermissionEx element can be a child of File, CreateFolder or Registry elements. How can I set it to the directory itself? Thanks Ravi- This SF.net email is

[WiX-users] Conditionally installing a component...

2008-04-10 Thread Ravikumar Gopinath
I have two issues that I need some help on: 1. I have a MSI which installs windows service on the box. It needs to be started on install only if a particular property is set. The ServiceControl element just has the start attribute. How can I get it to start the service only if a particular

Re: [WiX-users] Conditionally installing a component...

2008-04-11 Thread Ravikumar Gopinath
... / /Component ...should work Best regards, Sebastian Brand Instyler Software - http://www.instyler.com On Apr 11, 2008, at 24:39 , Ravikumar Gopinath wrote: I have two issues that I need some help on: 1. I have a MSI which installs windows service on the box. It needs to be started

[WiX-users] Condition column and formatted text...

2008-04-11 Thread Ravikumar Gopinath
I am using a custom table which has a column whose type is string and category is Condition. I want to set the column value to a property like this : Data Column=Condition[ENABLED]/Data However, when I build the MSI, I get an error stating ICE03: Bad conditional string. Table: JobsTable,