Re: [WiX-users] Help getting upgrades to work

2007-02-28 Thread fiordean dacian
Hi Alex, You might want to add OnlyDetect='no' attribute for the first UpgradeVersion tag, something like this: Upgrade Id=... UpgradeVersion OnlyDetect=no Minimum=0.0.0.0 IncludeMinimum=yes .../ UpgradeVersion OnlyDetect=yes Minimum=0.0.$(var.PRODUCTBUILDVERSION) .../

[WiX-users] That assembly does not allow partially trusted callers

2007-02-28 Thread dave_c
I want to store the Wix compiler code in a central location under source control within our organisation so that everyone that ends up using Wix uses a standard build. When I added to source control and tried to bruild a single file I get the following error message. Does anyone know what is

Re: [WiX-users] That assembly does not allow partially trusted callers

2007-02-28 Thread Simon Dahlbacka
http://www.georgewesolowski.com/blog/PermaLink,guid,4cc5fcdf-cc68-4cf0-a083-b22a8bdc92d6.aspx On 2/28/07, dave_c [EMAIL PROTECTED] wrote: I want to store the Wix compiler code in a central location under source control within our organisation so that everyone that ends up using Wix uses a

[WiX-users] Wix2.0 change dialog bitmaps and license (override default location)

2007-02-28 Thread Ricardo Lopes
Hi, I want to include custom bitmaps and license file but i don't want to put the bitmaps inside the Bitmap folder, i want to put then in a location of my choice and specify that location somehow, like it seems to be on Wix3. I can't use Wix3 for now, is it possible to do this on Wix2 ?

Re: [WiX-users] That assembly does not allow partially trusted callers

2007-02-28 Thread dave_c
Thanks for that. Following the instructions in the blog fixed the problem. Regards Dave C. Simon Dahlbacka wrote: http://www.georgewesolowski.com/blog/PermaLink,guid,4cc5fcdf-cc68-4cf0-a083-b22a8bdc92d6.aspx On 2/28/07, dave_c [EMAIL PROTECTED] wrote: I want to store the Wix compiler

Re: [WiX-users] SqlDatabase element logging the sa password

2007-02-28 Thread Dana Gutride
I believe there is a Hidden attribute that you can add to the property tag which will prevent it from being logged during install. Dana On 2/28/07, Abhishek Agarwal (RFID) [EMAIL PROTECTED] wrote: Hi, I am using the SqlDatabase in-built Wix custom action to create our configuration

Re: [WiX-users] UAC elevation prompt for signed MSI file under Vista

2007-02-28 Thread Jeff Bean
Thank you! That works perfectly. Jeff Julien R. wrote: Jeff, When signing file, use the /d parameter of Signtool.exe tool. signtool.exe sign ... /d My Description install.msi Vista UAC will use this description when asking for elevation instead of the randomly named file. --

[WiX-users] Shortcuts

2007-02-28 Thread Patrick Steele
In wix 3, has there been a change to the creation of shortcuts? Component Id='ExecutableFiles' Guid='57E1279E-8C24-4ba0-BA34-FA4253886C52' File Id='MatadorExe' Name='Matador.exe' Source='.\build\Matador.exe' Vital='yes' Shortcut Id='StartMenuShortcut' Directory='ProgramFilesFBBT' Name='Matador

Re: [WiX-users] Shortcuts

2007-02-28 Thread Jeff Paulsen
Patrick Steele wrote: Shortcut Id='StartMenuShortcut' Directory='ProgramFilesFBBT' Name='Matador 2.1' WorkingDirectory='INSTALLDIR' Icon='Matador.ico' IconIndex='0' Advertise='yes' / From this code, after an install I get shortcuts created, but the Target field of the shortcut properties

Re: [WiX-users] Properties read in with RegistrySearch, manipulated after that in the UI

2007-02-28 Thread Bob Arnson
Tobias Bengtsson wrote: I am experiencing the same behavior on the installer as I did before.. the components with a conditional install (e.g. POSSERVER=1) get's installed the second time I run the installer, and the Registry values which gets read in by AppSearch, exists.. What are your

Re: [WiX-users] Custom actions that are part of shared components

2007-02-28 Thread Bob Arnson
Stephen Walch wrote: (?ProductComponent = 2) AND ($ProductComponent = 3) So why would (?ProductComponent = 2) yield true during the second install? Could this be a timing issue? (In my sequence, the test is After='InstallFinalize'.) Timing might be an issue; I'm not sure if the

Re: [WiX-users] Shortcuts

2007-02-28 Thread Bob Arnson
Patrick Steele wrote: In wix 3, has there been a change to the creation of shortcuts? Component Id='ExecutableFiles' Guid='57E1279E-8C24-4ba0-BA34-FA4253886C52' File Id='MatadorExe' Name='Matador.exe' Source='.\build\Matador.exe' Vital='yes' Shortcut Id='StartMenuShortcut'

Re: [WiX-users] Wix2.0 change dialog bitmaps and license (override default location)

2007-02-28 Thread Ricardo Lopes
Thanks, have to wait then. On 28/02/07, Bob Arnson [EMAIL PROTECTED] wrote: Ricardo Lopes wrote: I want to include custom bitmaps and license file but i don't want to put the bitmaps inside the Bitmap folder, i want to put then in a location of my choice and specify that location somehow,

Re: [WiX-users] Shortcuts

2007-02-28 Thread Patrick Steele
Ok I'll try that out now, thanks fellas! From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 28 February 2007 16:52 To: Patrick Steele Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Shortcuts Patrick Steele wrote: In wix 3, has there been

Re: [WiX-users] How to Use WiX 3.0 with Vista

2007-02-28 Thread MJW
*Problem solved* - Yes, I am creating a LUA package and Orca does throw the same error. I ended up replacing the CUB files with another Orca install and these CUB files seemed to solve the problem. I don't know exactly what was wrong with the first CUB files, but now everything works fine. Thanks

[WiX-users] Uninstalling

2007-02-28 Thread Patrick Steele
Just one more thing before I go tonight, would anyone mind giving me a quick example of uninstalling? I want to uninstall any previous versions of our software using this: Upgrade Id='285EC2F6-E11B-4163-856C-5969F240A6C7' UpgradeVersion Property='' OnlyDetect='no' Maximum='2.0.1'

Re: [WiX-users] How to Use WiX 3.0 with Vista

2007-02-28 Thread Bob Arnson
MJW wrote: *Problem solved* - Yes, I am creating a LUA package and Orca does throw the same error. I ended up replacing the CUB files with another Orca install and these CUB files seemed to solve the problem. I don't know exactly what was wrong with the first CUB files, but now everything

Re: [WiX-users] Uninstalling

2007-02-28 Thread Mike Poulson
You will need to add a value to the property attribute. Then on that property element set secure='yes' Check out http://www.tramontana.co.hu/wix/lesson4.php for some info too. Mike Poulson Network Engineer Tableau Software 400 North 34th Street, Suite 200 Seattle, WA 98103 206 633

Re: [WiX-users] NAnt Task Documentation

2007-02-28 Thread Christopher Brandt
Actually, I found your blog entry and that's what got me started. Thanks. I've offered to help them out with documenting the NAnt tasks, because it's important. Haven't heard back yet. On 2/27/07, Charlie Poole [EMAIL PROTECTED] wrote: I had that problem too. I posted a short example, such

Re: [WiX-users] How to get the registration information from COM component

2007-02-28 Thread Gregor Harrison
Adding COMBldAp... From: Xin Liu (Person Consulting) Sent: Tuesday, February 27, 2007 8:10 PM To: wix-users@lists.sourceforge.net; Visual C++ Special Interest Group; COM Interop Discussion Subject: How to get the registration information from COM component I am building the .msi file for a

[WiX-users] starting service on install

2007-02-28 Thread Lindsay Harris
Hi! I have a service I am installing (that part is working fine), but when I try to start it on install I am getting a Error 1920. Service 'AgpmEXEInstall' (AgpmEXEInstall) failed to start. Verify that you have sufficient privileges to start system services. error. However when I start it

[WiX-users] merge module that conditionally installs a component

2007-02-28 Thread John Lalande
I have created a plugin for the PIM Act! This plugin dll must be installed in a subfolder of the Act! installation directory only if Act! is installed. I would like to package the plugin in a merge module so that different teams at our company can use it by simply including it in their

Re: [WiX-users] How to get the registration information from COM component

2007-02-28 Thread Fabian Toader
I think you want Mine: http://toolbox/sites/21823/default.aspx Mine allows registration to be extracted from .reg, .dll, and .tlb files and to be output in CMI XML or .inf format. This is especially useful for creating setup manifests From: Xin Liu (Person Consulting) Sent: Tuesday,

[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] Changing registry IDs across product versions

2007-02-28 Thread Tina Basinger
Can anyone tell me if it is okay to update the Id field in a Registry node across multiple versions of the product? In other words, if I have version 1 with component A that includes registry item with Id=A. In version 2, can I update the ID of the registry item to be Id=B while leaving

[WiX-users] Create new IIS WebSite

2007-02-28 Thread cosmo51
I am trying to create a new web site in IIS. Here is my code. WebSite Id='Web Sites' Description='My Web Site' Directory='INSTALLDIR' StartOnInstall='yes’ WebAddress Id=AllUnassigned Port=14465 / /WebSite If I use port 80 it renames the ‘Default Web Site’ to ‘My Web Site’. If I use

[WiX-users] (no subject)

2007-02-28 Thread Bei Liu (Volt)
Can anyone tell me how to escape the ? My execommand is: update abc.inf ABC\DEF_123GHIJ_1234 Thanks much, Bei - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the

[WiX-users] to escape the

2007-02-28 Thread Bei Liu (Volt)
Can anyone tell me how to escape the ? My execommand is: update abc.inf ABC\DEF_123GHIJ_1234 Thanks much, Bei - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the

Re: [WiX-users] Create new IIS WebSite

2007-02-28 Thread Matthew Janulewicz
IIS 5.1 (default with XP) only allows one website to be installed/running at a time, so that's probably why it replaces your 'Default Web Site'. IIS 6.0 should allow you to install multiple websites, we do it all the time. I don't know if that's the default version for Windows Server 2003, but

Re: [WiX-users] to escape the

2007-02-28 Thread Mike Poulson
amp; Mike Poulson Network Engineer Tableau Software 400 North 34th Street, Suite 200 Seattle, WA 98103 206 633 3400 x.556 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bei Liu (Volt) Sent: Wednesday, February 28, 2007 3:43 PM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Create new IIS WebSite

2007-02-28 Thread david adams
IIS 5.1 (default XP) does allow only 1 web site. IIS 6.0 (default for 2003) allows multiple web sites, which can be created and configured via the installers. Assuming that you are using default configurations, Shayla's code snippet would overwrite the Default Web Site (All Unassigned / Port

Re: [WiX-users] merge module that conditionally installs a Component

2007-02-28 Thread Balakrishna.BK
Hi, I am beginner in WIX, and a couple of days back I had a similar issue. The following are the changes i made after help from this group. Added the following line in InstallUISequence and InstallExecuteSequence LaunchConditions After='AppSearch' / This will ensure that

[WiX-users] Upgrade product

2007-02-28 Thread Art_Z
Hello! It is necessary to update a product, thus using catalogues which were selected the user at the last installation. How it is possible to get these catalogues using WiX, not using the register? -- View this message in context: http://www.nabble.com/Upgrade-product-tf3325157.html#a9244163