Re: [WiX-users] Running Service under a User Account

2007-09-26 Thread peteyates
Hi All, Thanks for all the advice, I have already given the administrator account and the account I am trying to run the service under "Log on as a service" rights and I am still seeing the same error even after rebooting to make sure that policies are refreshed. Is there anything else that an

Re: [WiX-users] size of msi 20% bigger with wix3 than with wix2

2007-09-26 Thread Rob Mensching
Have you played with the Media/@CompressionLevel at all? I'm not sure what all the defaults were but it is possible WiX v2 as doing "high" compression at one point in time and v3 is doing "mszip" or something like that. Otherwise... there could be something more subtle going on and it would be

[WiX-users] Advertised shortcut and MSI repair triggered - problems with components reinstalled

2007-09-26 Thread Adrian Gantoi
Hi all, I have a problem with understanding a MSI feature/behavior. Below is the setup structure. * Feature A * ComponentGroupRef containing: Component A Executable Advertised shortcut to executable, with exe arguments including a file from "Component

Re: [WiX-users] choosing Website and changing Virtual Directory

2007-09-26 Thread [EMAIL PROTECTED]
Hi Matt, Sorry, I think I expressed myself a little bit confusing. I never have written vbscript code but your example is pretty much that what I was looking for. I realized after a while that there is a VBScriptCall attribute for the Custom Actions so its not so hard to implement it. Meanwhile

Re: [WiX-users] Generate multiple MSIs from a single wxs source?

2007-09-26 Thread Rob Mensching
Why do you use Merge Modules instead of just .wixlibs everywhere? Do you share the Merge Modules with other groups that don't use the WiX toolset? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mailinglist Sent: Thursday, September 13, 2007 00:58 To: Ro

Re: [WiX-users] Deploying the MSI

2007-09-26 Thread János Brezniczky
2007/9/26, Chris Ridd <[EMAIL PROTECTED]>: > > > On 25 Sep 2007, at 23:39, János Brezniczky wrote: > > > I would just add that it's easier to set Compressed="yes" on the > > Package instead of setting it on each individual File element. (I > > use WiX 2) > > But does it also apply to merged in modu

Re: [WiX-users] Change the parentdirectory of a mergemodule

2007-09-26 Thread Rob Mensching
Yes, the Directories that are parented to TARGETDIR can be “reparented”. The MSI SDK talks about how you can author your Merge Module’s directory table to be retargetable. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, September 19, 2007 02:12

Re: [WiX-users] choosing Webserver and changing Virtual Directory

2007-09-26 Thread Rob Mensching
You'd need a CustomAction to gather the WebAddress information then use properties to set that. It's a lot more complicated that the VDir scenario. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, September 24, 2007 04:50 To: wix-users@lists.sourcefo

Re: [WiX-users] What do I do with per-user data when I uninstall?

2007-09-26 Thread Rob Mensching
I typically recommend exactly what Raymond suggests. In Office we leave around pretty much all the settings the user tweaks. There is a nice side effect of leaving this data behind (beyond the fact that you don't go insane trying to load all user hives without hosing roaming scenarios), you ca

Re: [WiX-users] .NET user.config File

2007-09-26 Thread Rob Mensching
Definitely agree with that. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brett Kapilik Sent: Tuesday, September 18, 2007 14:33 To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] .NET user.config File Since it is in a per-us

Re: [WiX-users] Trouble with Stale Versions

2007-09-26 Thread Rob Mensching
Did you author an UpgradeCode and the Upgrade elements? If not, then MSI may have just re-ran the cached product. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Sent: Tuesday, September 18, 2007 07:43 To: wix-users@lists.sourceforge.net Subject: [

Re: [WiX-users] Cancelling Uninstall Question, How do I prevent a custom action from occuring

2007-09-26 Thread Rob Mensching
I don't exactly understand the question. One thing to keep in mind is that rollback after an error and the user clicking cancel basically look the same. I don't think there is any way to differentiate those scenarios. I don't know if that helps at all. -Original Message- From: [EMAIL

Re: [WiX-users] Shortcut creation problem

2007-09-26 Thread Rob Mensching
Can you a bit more specific about what the actual problem you are seeing? One thing I'm pretty sure is going to mess things up is that the fact that Advertised Shortcuts point at the KeyPath of the Component. A Component can only have one KeyPath so I would guess that your advertised shortcuts

Re: [WiX-users] Supressing Light.exe errors

2007-09-26 Thread Rob Mensching
There is no way to suppress errors. Errors mean that the resulting MSI would be structurally unsound (or there is a bug in the toolset). From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Danny Smith Sent: Monday, September 17, 2007 18:08 To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Wix and IIS Issue

2007-09-26 Thread Rob Mensching
No idea. Never heard of this issue. Have you been able to investigate this anymore? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Abdullah Ahmed Sent: Monday, September 17, 2007 16:40 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Wix and IIS Issue I recently starte

Re: [WiX-users] size of msi 20% bigger with wix3 than with wix2

2007-09-26 Thread SteveKing
Original-Nachricht > Datum: Wed, 26 Sep 2007 01:07:19 +0200 > Von: "János Brezniczky" <[EMAIL PROTECTED]> > An: "Stefan Küng" <[EMAIL PROTECTED]> > Betreff: Re: [WiX-users] size of msi 20% bigger with wix3 than with wix2 > Hi, > > I would check the difference directly with Orca

Re: [WiX-users] SqlExtension Rollback

2007-09-26 Thread Rob Mensching
You have to write your own Rollback scripts. Due to the design of the Windows Installer it is not possible to maintain a single SQL transaction through the whole install process... so we get stuck with more of a compensating transaction model as opposed to ACID. -Original Message- From

Re: [WiX-users] CloseApplication element is throwing ERROR while building...

2007-09-26 Thread Rob Mensching
Did you add the namespace? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of V K Gangwar Sent: Tuesday, September 25, 2007 00:11 To: wix-users@lists.sourceforge.net Subject: [WiX-users] CloseApplication element is throwing ERROR while building... Hello All, I am working with WiX3.0

Re: [WiX-users] Problems attempting to advertise a shortcut

2007-09-26 Thread Rob Mensching
Advertised Shortcuts point at the KeyPath of the Component they are contained in. You need to put the Advertised Shortcut in the same Component as the target File and the File must be the KeyPath. That's a Windows Installer restriction. If you want to put your Shortcut in a different Componen

Re: [WiX-users] Change the parentdirectory of a mergemodule

2007-09-26 Thread [EMAIL PROTECTED]
Hi Rob, I have just decompiled the mergemodules made by Visual Studio, which I use and searched for the property that sets the path. In my main wxs I overwrite the property with the one choosen in the dialog. I think it is not a good solution but I do not get along with the Windows Installer SD

Re: [WiX-users] Silent install won't copy in files

2007-09-26 Thread Rob Mensching
What is the exact problem? I'm a little confused by what you mean when you say "it isn't copying 3 files correctly"? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Menaker Sent: Friday, September 14, 2007 15:03 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Silent

Re: [WiX-users] size of msi 20% bigger with wix3 than with wix2

2007-09-26 Thread SteveKing
Original-Nachricht > Datum: Wed, 26 Sep 2007 01:08:53 -0700 > Von: Rob Mensching <[EMAIL PROTECTED]> > An: "Stefan Küng" <[EMAIL PROTECTED]>, "wix-users@lists.sourceforge.net" > > Betreff: RE: [WiX-users] size of msi 20% bigger with wix3 than with wix2 > Have you played with t

[WiX-users] CloseApplication element is throwing ERROR while building...

2007-09-26 Thread V K Gangwar
Hi Rob, Here is my code -- http://schemas.microsoft.com/wix/UtilExtension"; Id="CloseFaxFinderClient" Description="Need to close ff110client.exe" Target="ff110client.exe" Sequence="10" /> regards, Veerendra Rob Mensching <[EMAIL PROTECTED]> wrote:v\:* {behavior:url(#default#VML)

Re: [WiX-users] size of msi 20% bigger with wix3 than with wix2

2007-09-26 Thread Rob Mensching
What are the exact versions of the toolsets that you are comparing? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of SteveKing Sent: Wednesday, September 26, 2007 01:52 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] size of msi 20% bigger with

Re: [WiX-users] Change the parentdirectory of a mergemodule

2007-09-26 Thread Rob Mensching
It all depends on how much you want to understand the tools you’re using. If you read the MSI SDK a few times (yeah, it’s dense and hard to get through) then you’ll have a much better understanding of how things work and then how to build optimal solutions. This really isn’t any different than

Re: [WiX-users] size of msi 20% bigger with wix3 than with wix2

2007-09-26 Thread SteveKing
Original-Nachricht > Datum: Wed, 26 Sep 2007 01:54:39 -0700 > Von: Rob Mensching <[EMAIL PROTECTED]> > An: SteveKing <[EMAIL PROTECTED]>, "wix-users@lists.sourceforge.net" > > Betreff: RE: [WiX-users] size of msi 20% bigger with wix3 than with wix2 > What are the exact version

Re: [WiX-users] (no subject)

2007-09-26 Thread Rob Hamflett
Do you mean when the user types it into an edit control? If so, you want @Password='Yes' on that control. Rob [EMAIL PROTECTED] wrote: > I've written wix to install windows service that requires > username/password. Currently I'm using public property to pass > username/password and ServiceI

Re: [WiX-users] choosing Webserver and changing Virtual Directory

2007-09-26 Thread [EMAIL PROTECTED]
Yes Rob I have realized that its not so easy. But the post of me is wrong because I want to choose the website (perhaps you have read it from the mail list ) and now I am at the point where I gain the /LM/W3SVC/1 for example, but what does not know what the iis:website or iis:webadress in WiX ne

Re: [WiX-users] Deploying the MSI

2007-09-26 Thread Chris Ridd
On Wednesday, September 26, 2007, at 09:22AM, "János Brezniczky" <[EMAIL PROTECTED]> wrote: >2007/9/26, Chris Ridd <[EMAIL PROTECTED]>: >> >> >> On 25 Sep 2007, at 23:39, János Brezniczky wrote: >> >> > I would just add that it's easier to set Compressed="yes" on the >> > Package instead of sett

Re: [WiX-users] Running Service under a User Account

2007-09-26 Thread János Brezniczky
Peter, I've just upgraded the Win2k3 Server to SP2, and there was something I missed to notice yesterday. First of all yesterday I thought the Windows Installer service might not have had the required privileges, so I simply tried to change the account under which the service was run to Administra

Re: [WiX-users] CA running an executable from a registry string

2007-09-26 Thread Duncan Bayne
On Wed, 2007-09-19 at 20:49 -0700, Bob Arnson wrote: > Duncan Bayne wrote: > > > > > > To have a property specify the .exe to run, you must use the Property > and ExeCommand attributes. ExeCommand contains the command-line arguments. Ahah - thanks :-) I'll give that a try ...

[WiX-users] Removing existing shortcuts at install

2007-09-26 Thread tuyenqh
I'm creating an installer using WIX 2.0. My installer in fact a second step in a two-steps process: 1) Install a purchased tool set installer , that creates shortcuts (among other things) 2) install my installer, that removes some shotcuts created in the first steps, and add some of its own I co

Re: [WiX-users] Some STUPID Limitations in WiX

2007-09-26 Thread Richard.Foster
DongFang, Breaking the limitations you have observed is probably not possible in WiX since WiX is just a mechanism for authoring files which are then handled by Microsoft Installer. Unfortunately, if what you are attempting to accomplish is not handled by Microsoft Installer itself (and I would ag

[WiX-users] Need to hide a Bat file during install

2007-09-26 Thread Craig0ss
HI In my msi file i have a custom action that registers .dll files, the progress of this is displayed in cmd prompt, this prompt needs to be invisible to the user any ideas? Thanks -- View this message in context: http://www.nabble.com/Need-to-hide-a-Bat-file-during-install-tf4522395.html#a1

[WiX-users] 64-bit packages

2007-09-26 Thread Chris Ridd
We're creating separate 64-bit and 32-bit packages, and so far my 64-bit packages are refusing to install in 2003 Server. The most interesting of the errors reported by Orca is: ICE80ERRORThis package is marked with x64 but it has a schema less than 200. How do I do that using wix2? I'

Re: [WiX-users] something strange about appsearch in vista

2007-09-26 Thread bcs
I have the same problem. It works on Windows XP but on Vista my feature is not uninstalled because the condition prevents it. I guess it has something to do with permissions. During an uninstallation operation it seems that you don't have the required privileges to be able to read registry values

Re: [WiX-users] 64-bit packages

2007-09-26 Thread John Vottero
> We're creating separate 64-bit and 32-bit packages, and so far my 64- > bit packages are refusing to install in 2003 Server. The most > interesting of the errors reported by Orca is: > > ICE80ERRORThis package is marked with x64 but it has a schema > less than 200. > > How do I do that

Re: [WiX-users] Removing existing shortcuts at install

2007-09-26 Thread Schrieken, Rene
Something like this? Never tried it... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of tuyenqh Sent: Wednesday, September 26, 2007 2:01 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Removing existing shortcuts at install I'm cr

[WiX-users] Proper upgrade / repair of files

2007-09-26 Thread Gregory Petrosyan
Hello, I'm trying to solve very simple problem: assume the installation consists of one share, one .exe and one .txt; I want, after every upgrade (using newer .msi), after every installation (using same .msi), and after every "Repair" action these 3 things to be _exactly_ the same, as specified in

Re: [WiX-users] 64-bit packages

2007-09-26 Thread Chris Ridd
On Wednesday, September 26, 2007, at 02:45PM, "John Vottero" <[EMAIL PROTECTED]> wrote: >> We're creating separate 64-bit and 32-bit packages, and so far my 64- >> bit packages are refusing to install in 2003 Server. The most >> interesting of the errors reported by Orca is: >> >> ICE80ERRO

[WiX-users] Is there any way to find out version of your .MSI file

2007-09-26 Thread V K Gangwar
Hello, Is there any method to find out the version number (major.minor.build) of our msi package. Thanks in advance. Regards, Veerendra - Check out the hottest 2008 models today at Yahoo! Autos.-

[WiX-users] Embedded locale transforms

2007-09-26 Thread Gareth at Serif
Has anyone any experience of this kind of thing? I've got an MSI with ProductLanguage property set to 1033, likewise the Languages field of the Summary Information is set to 1033. I have created a French transform (just for the dialog strings, for testing purposses) and called it 1036.mst and imb

Re: [WiX-users] Some STUPID Limitations in WiX

2007-09-26 Thread Peter Marcu
If you need to get an msm from someone because they don't use WiX, that makes sense. If you're msi is the only one consuming those msm's you wont hit the major problem of servicing msm's which is, you don't know all of the various places it was consumed and therefore you don't know all the produ

Re: [WiX-users] COM+ msi error

2007-09-26 Thread daveog
... thought I'd better add that the component was created in VB6 ...:-) daveog wrote: > > Hi, > > I have started to dabble with WIX recently as I require an automated build > and deployment facility. > I have searched previous posts and seen similar problems to the one I have > but have still

[WiX-users] COM+ msi error

2007-09-26 Thread daveog
Hi, I have started to dabble with WIX recently as I require an automated build and deployment facility. I have searched previous posts and seen similar problems to the one I have but have still been unable to progress. The basic problem is that I get the following error in the msi log when insta

Re: [WiX-users] Deploying the MSI

2007-09-26 Thread Jessi Darling
Thank you all for your suggestions. What ended up working for me was changing compressed='no' to compressed='yes' in the Package. I had it as no, I guess, because the template I used had it as no. On 9/26/07, Chris Ridd <[EMAIL PROTECTED]> wrote: > > > On Wednesday, September 26, 2007, at 09:22A

[WiX-users] Dialogs with passwords in a Japanese locale

2007-09-26 Thread D Hutchinson
I am having problems entering a password that will be applied to a service as part of installation. I have created a dialog in my installer that, among other things, has a password field. In my Japanese version of the installer, the password entered is getting corrupted. If I turn off the pa

[WiX-users] Fw: Some STUPID Limitations in WiX

2007-09-26 Thread Cristian N. Baiu
Hello Peter, Actually the MSM is not intened to be delivered to unknown users. It installs a component which is shared between company's products (it's a part which ensures communication between all our company's products) So, must probably we shall know the products to which we ship the patche

[WiX-users] Scheduling a task

2007-09-26 Thread Wouter Demuynck
Hello, I have an installer project that will require a task to be scheduled in Windows. The task itself is one of the executables installed by the MSI (In future versions, this will be a Windows Service, but right now my hands are tied on this). If believe that if there's no existing task in

[WiX-users] Prevent Limited Users from Installing my Product.

2007-09-26 Thread Magus
I thought this was the default, but maybe I am mistaken? I need to prevent the user from installing if they have a Windows Limited User Account? Is there a real easy way to do this? -- View this message in context: http://www.nabble.com/Prevent-Limited-Users-from-Installing-my-Product.-tf452447

[WiX-users] Wix 3.0 : Confused about some IIS website creation issues

2007-09-26 Thread Abdullah Ahmed
Hey Guys, As part of an install I need to add in a virtual directory under an already existing virtual dir. Currently we have a website at http://localhost/blah which runs an application located at [program files\blah] My install installs a new component to blah located at [program files\blah\co

Re: [WiX-users] Wix and IIS Issue

2007-09-26 Thread Abdullah Ahmed
It turns out we had a borked version of Interop.MSXML.dll being installed which caused all these issues. Fixing that removed the problem..but it sure did make me bang my head around for a couple of days :) On 9/26/07, Rob Mensching <[EMAIL PROTECTED]> wrote: > > No idea. Never heard of this issu

[WiX-users] FileSearch

2007-09-26 Thread Chris
All, I install my app in C:\Program Files\Company\App 1.1 ... There is a subdirectory Archive\ that does not get removed upon uninstallation. How do I search for the most recent version of App and copy all the files within App 1.1\Archive to a new directory? If someone can show me an

Re: [WiX-users] Silent install won't copy in files

2007-09-26 Thread Mike Menaker
The problem is that the files aren't copied at all. When doing a normal graphical install they get copied over fine. Silent install they don't get copied at all. I was able to fix this problem by using the directory structure to copy in files instead of CopyFile. It is still odd that CopyFile didn'

Re: [WiX-users] Silent install won't copy in files

2007-09-26 Thread Chesong Lee
It seems like "DestinationProperty" attribute is used in place of "DestinationDirectory" attribute. CopyFile topic in WiX help explains both. One suggestion is to use: ... ... Chesong Lee From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

[WiX-users] Uninstall fonts?

2007-09-26 Thread Kelly Leahy
Does Wix uninstall fonts that were installed by a Wix-based installer? It seems like it doesn't. I understand it's probably not a good idea to uninstall fonts, since there's no refcounting behavior for them. I just want to make sure it really doesn't uninstall them and I'm not just seeing thi

Re: [WiX-users] Silent install won't copy in files

2007-09-26 Thread Chesong Lee
AFAIK, DestinationDirectory is an identifier in the Directory table and DestinationProperty is a name of the property, as stated in CopyFile uses DuplicateFile/MoveFile table. Either case, there should be no square brackets. So declare the directory or the property - I would suggest the Director

Re: [WiX-users] Uninstall fonts?

2007-09-26 Thread Kelly Leahy
Ok... that's my fault. I forgot to put a guid on the component containing the fonts. Interestingly enough - it built successfully without warning me (I had Guid="") and installed them properly, but didn't remove them. Is this the recommended way to convince the installer to install something

[WiX-users] Is there anyway to overwrite the directory Lenght Limit?

2007-09-26 Thread Magus
Wix 2.0 -- View this message in context: http://www.nabble.com/Is-there-anyway-to-overwrite-the-directory-Lenght-Limit--tf4525953.html#a12913456 Sent from the wix-users mailing list archive at Nabble.com. - This SF.net ema

[WiX-users] Is there any way to find out version of your .MSI file (installed)

2007-09-26 Thread V K Gangwar
Sorry, I think i didn't mention my question properly. Actually I wanted to know the version number of an already installed package. Thanks!! Veerendra John Lalande <[EMAIL PROTECTED]> wrote: Veerendra You could use Orca to open the MSI and look at the ProductVersion property in the Properties

[WiX-users] Localisation

2007-09-26 Thread Anidil
Should i be always using standard/custom wixui library during link time to do localisation for different languages?Is it not possible if i include the UI code inside my .wxs source file? -- View this message in context: http://www.nabble.com/Localisation-tf4526521.html#a12915227 Sent from the wi

Re: [WiX-users] Is there anyway to overwrite the directory Lenght Limit?

2007-09-26 Thread Schrieken, Rene
If you're having trouble with the 260 char limit, it is not a wix thing but a System.IO 'feature'. I reflectored System.IO.File to understand why it won't accept paths of 32000 chars. The winapi is capable of doing that by putting \\?\ in front of your path/file. Unfortunately the managed code does