[WiX-users] Not detecting correct version of aspnet_regiis.exe

2008-02-04 Thread jrcolons
I made the following code to create a property which contains the aspnet_regiis.exe, framework 2.0 version path. Property Id=ASPNETREGPATH RegistrySearch Id=FRAMEWORKBASEPATH Root=HKLM Key=SOFTWARE\Microsoft\.NETFramework Name=InstallRoot Type=raw DirectorySearch

[WiX-users] Sql extension problem

2007-10-24 Thread jrcolons
Trying to add a reference to the WixSqlExtension.dll on my project, and adding xmlns:Sql=http://schemas.microsoft.com/wix/SqlExtension; I always get this error: The extension 'Microsoft.Tools.WindowsInstallerXml.Extensions.SqlCompiler' uses the same xml schema namespace,

Re: [WiX-users] Detecting processor model

2007-10-19 Thread jrcolons
How can I get those variables passed to my wix script? Tony Hoyle wrote: Alexei Boukirev wrote: Windows NT 4 and above have several environemnt variables that you can check in MSI: PROCESSOR_IDENTIFIER, PROCESSOR_LEVEL, and PROCESSOR_REVISION. So Pentium II on one of my desktops has

[WiX-users] Creating a .net 3.0 and SQL server 2005 bootstrapper

2007-10-18 Thread jrcolons
Configuring the project to bootstrap .net 3.0 and SQL server 2005 express, using the following lines of code: ItemGroup BootstrapperFile Include={511DAC48-6CBB-43a3-A64D-0182F2A9EBC2} ProductName.NET Framework 3.0/ProductName /BootstrapperFile BootstrapperFile

[WiX-users] search based properties

2007-06-13 Thread jrcolons
I was reviewing some of our setup code, and updating it to ask for some new requirements. two of them are Office Word and office excel 2007 release installed. I tried several times with almost any advance at all to make a condition out of my properties. Here's the code: Property Id=WORDFIND

[WiX-users] search based properties

2007-06-13 Thread jrcolons
jrcolons wrote: I was reviewing some of our setup code, and updating it to ask for some new requirements. two of them are Office Word and office excel 2007 release installed. I tried several times with almost any advance at all to make a condition out of my properties. Here's the code

Re: [WiX-users] error using fileshare

2007-05-17 Thread jrcolons
Sorry I didn't replied when I found the error... I used a Directory tag with an Id but without a name... maybe because i'm worn out heheehe I took almost 3 hours to realize it... Thanks Mike for all your unconditional help Thanks! Jose Mike Dimmick-2 wrote: Error 123 (listed in the

[WiX-users] creating user groups and adding users

2007-05-17 Thread jrcolons
I'm trying to create a users group within a server and to add some existing users and new users as well How can I do that using Wix 3? -- View this message in context: http://www.nabble.com/creating-user-groups-and-adding-users-tf3771879.html#a10664023 Sent from the wix-users mailing list

[WiX-users] error using fileshare

2007-05-16 Thread jrcolons
I'm trying to create a repository where everyone in the domain have full control. Here's the code I've tried: util:User Id=Everyone Name=Everyone Domain=[%USERDOMAIN]/ CreateFolder/ util:FileShare Id=IPSDown1 Description=IPSGlobalServicesDownloads

Re: [WiX-users] License RTF not used?

2007-05-16 Thread jrcolons
There's a completely different method in WiX 3.0. 3.0 permits substitution of data in the compiled .wixobj/.wixlib files at link (light) time. Specify -dWixUILicenseRtf=path-to-license-file on the light command line. This is definitely a FAQ. -- Mike Dimmick _ Although I'm not

Re: [WiX-users] error using fileshare

2007-05-16 Thread jrcolons
Mike Dimmick-2 wrote: 'Everyone' is not a member of the domain but is a Windows well-known SID. The CA code in WiX 3.0.2813.0 handles Everyone directly. I think, based on my reading of the code, that you should omit the User/@Domain parameter. -- Mike Dimmick Mike: Thanks for

Re: [WiX-users] error using fileshare

2007-05-16 Thread jrcolons
Mike Dimmick-2 wrote: 'Everyone' is not a member of the domain but is a Windows well-known SID. The CA code in WiX 3.0.2813.0 handles Everyone directly. I think, based on my reading of the code, that you should omit the User/@Domain parameter. -- Mike Dimmick Mike: Thanks for

[WiX-users] Validation on UI dialogs

2007-05-11 Thread jrcolons
Hi everybody: I'm doing some modifications to Web.config adding some properties that are entered by user in the UI. If the user don't fill the blanks, the application will be useless. Is there any way that I can validate that an edit control is not empty? Thanks in advance! Jose -- View

Re: [WiX-users] Questions on using XmlConfig/XmlFile elements

2007-05-11 Thread jrcolons
Kevin Fischer wrote: I'm just starting out with using WiX inside of Visual Studio 2005. I've installed the December 2006 version 3 of WiX, Votive, etc. via the MSI installation. I have a very basic .wxs file currently. I want to use XmlConfig inside of my .wxs file. The

Re: [WiX-users] IIS Setup for ASP.NET Runtime?

2007-05-10 Thread jrcolons
S C-4 wrote: I am attempting to set the version of the ASP.NET runtime in my WiX v3 wxs. In the IIS 6 MMC, getting Properties on the default web site and choosing the ASP.NET tab gives a dropdown with the available runtimes, it default to 1.1 on most systems; I need to set that to 2.0

[WiX-users] ICE03 error

2007-05-09 Thread jrcolons
Hi! I'm trying to set a connection string in my web.config file for a third party application that's maybe too long for xmlfile to work... I am trying to figure out how i can work around that. can anyone enlighten me in that? that's the string I'm trying to setvalue on my web.config:

Re: [WiX-users] ICE03 error

2007-05-09 Thread jrcolons
Rob Mensching-2 wrote: What's the problem? Sorry I was trying to be so succint that I omitted the essence of my problem. I'm trying to modify a connection string value to an add key in the web.config to reflect an application server name. The sentence i'm using to try achieve this is the

Re: [WiX-users] ICE03 error

2007-05-09 Thread jrcolons
jrcolons wrote: Rob Mensching-2 wrote: Hmm, I thought the length restriction was removed. Feel free to open a bug so we remember to update the string lengths. Sorry Rob, I'm a newbie in wix matters... how do i open it? I just opened it. Is there any hack or workaround I

[WiX-users] getting /setting servername property

2007-04-26 Thread jrcolons
I'm trying to set up web.config connection strings and some configurations that need the server name in order to be set up correctly. Is there a property in wix or a windows installer property that i can recall on my sript to set it? How can I obtain that by Installer or OSS means Greetings and

Re: [WiX-users] getting /setting servername property

2007-04-26 Thread jrcolons
Rob Mensching-2 wrote: ComputerName? i'm doing an installer for a web application that some of it's settings require the webserver name, which it's better to be obtained from some property other than user interface generated ones... is there some one? how do i obtain the

[WiX-users] Adding duplicate filenames within different locations

2007-04-25 Thread jrcolons
In my application, there's thousands of files, and some of them have the same file name. I try to compile /link my project and shows the following error: Error 1 Item has already been added. Key in dictionary: 'pagetable15rightR.png' Key being added: 'pagetable15rightR.png'. Their names

[WiX-users] Adding duplicate filenames within different locations

2007-04-25 Thread jrcolons
In my application, there's thousands of files, and some of them have the same file name. I try to compile /link my project and shows the following error: Error 1 Item has already been added. Key in dictionary: 'pagetable15rightR.png' Key being added: 'pagetable15rightR.png'. Their names

Re: [WiX-users] Setting IIS ASP.NET version

2007-04-25 Thread jrcolons
Kevin Dente wrote: I accomplished this by spawing the aspnet_regiis tool to switch the framework version of the site. This involves a couple of steps: Find the path to the tool: Property Id=FRAMEWORKBASEPATH RegistrySearch Id=FindFrameworkDir Root=HKLM

Re: [WiX-users] Beginner's Tutorial, Books, Versions...

2007-04-24 Thread jrcolons
As a newbie in Wix matters, I'm suffering the lack of a centralized knowledge source for wix v3. I know I can't cooperate much in wix technical matters, but I can translate material to spanish in order to more people get aquainted to wix as I am and I'm sure you are. Count on me and thanks for

[WiX-users] Harvesting Directories /Webservers

2007-04-18 Thread jrcolons
Hi! I'm using Wix 3 and I'm trying to harvest a website using heat, but I don't know how to... then I tried to harvest the directory but it gives me a component for each file. Can I get 1 component per directory containing all the files contained in a directory? how do I can get it? Thanks

[WiX-users] Specifying ASP.net version to use

2007-04-16 Thread jrcolons
I'm doing a website installer, and the testbed machine has 1.1 and 2.0 framework installed. I don't get the website started because I don't know how to specify it which version of asp.net to use in it. How do I? thanks in advance. Jose Colon -- View this message in context:

Re: [WiX-users] cultures switch in votive

2007-04-16 Thread jrcolons
Simon Dahlbacka wrote: Properties - Linker Cultures /Simon Thanks! I specified the culture the way you taught me to do it, but I still receive several errors like that: The localization variable !(loc.msierrIISFailedCreateApp) is unknown. Please ensure the variable is defined.

Re: [WiX-users] IIS schema problem

2007-04-14 Thread jrcolons
Just another doubt... excuse me I've no previous experience programming any setups... I got my .wxs compiled and linked adding -ext WixIIsExtension -cultures:en-us. How do I add the culture switch to the votive sentence? -- View this message in context: