[WiX-users] Error 2908

2007-11-12 Thread Andrew Ward
Hello, I have an installer which works fine on two computers I have tested, but fails on a third computer with the following error for each wix component element: Action start 19:58:49: InstallFinalize. Action 19:58:49: ProcessComponents. Updating component registration DEBUG: Error 2908:

Re: [WiX-users] Just found SetupBld

2007-11-12 Thread John Hall
I have been having issues with getting a bootstrapper working for some time now. i just recently found the program setupbld, and it looks like it might solve my problems. Here is what i aim to achieve the user runs setup.exe. it would detect and prerequisits and install them, then launch

[WiX-users] Reuse cabinet deletes cabinet

2007-11-12 Thread Joachim Back
Hello, I want to create two MSI based on the same external cabinet data.cab. My goal is to create the cabinet file only one time during installation build. I use the parameters -reusecab like this light -sacl -ss -spdb -b %WIXPATH% -ext WixUtilExtension -vwx -nologo -loc English.wxl -out

[WiX-users] configuration.save fails on VISTA with UAC turned on

2007-11-12 Thread Srinivas Tirupati
Hi In my msi I use a custom action to write some entries to machine.config file. Everything works fine on WIN XP machine. But on WINDOWS VISTA with UAC turned on the configuration.save in Custom Action code throws exception Here is the stack trace : Exception while installing/uninstalling

[WiX-users] MSI installer deployment through SMS 2003 ?

2007-11-12 Thread Veerendra
Hi, I am able to deploy my .msi package through SMS2003. But when I run this package on the client machine. It throws a message that The Program can not be Run. Because programs files are currently unavailable. Any Idea? Regards, Veerendra Christopher Painter wrote: I pushed packages for a

[WiX-users] Monitoring progress of chained installs

2007-11-12 Thread Evans, Jim
I have a moderately complex application that I am trying to write an installer for. The current installer does not use Windows Installer at all, but I believe moving to Windows Installer would provide several benefits for our customer base. Our product requires services to be started, file shares

Re: [WiX-users] Reuse cabinet deletes cabinet

2007-11-12 Thread Stefan Pavlik
Hi I am using following command and it works OK: light.exe *.wixobj -cc CabCache -loc LocEN.wxl -out Package.msi light.exe *.wixobj -cc CabCache -reusecab LocDE.wxl -out Package.msi Regards Stefan Joachim Back wrote: Hello, I want to create two MSI based on the same external cabinet

Re: [WiX-users] MSI installer deployment through SMS 2003 ?

2007-11-12 Thread Christopher Painter
You'd get better answers in an SMS forum. Basically you need to check your client health, your MP ( Management Point ) health and validate that the DP ( distribution point ) has the updated package source. Basically SMS controls DP's based on client subnet. There is the concept of

[WiX-users] WiX Book

2007-11-12 Thread Douglas Paterson
Hi everyone, I am a Senior Acquisition Editor with Packt Publishing, and I am looking to develop a book about WiX. I am keen to talk with people who would like to write about WiX, and I also want to discover more about the kind of things people would like to see in such a book. If this sounds

[WiX-users] Change button in Add/Remove Programs dialog

2007-11-12 Thread Abdullah Ahmed
Hey guys, Is there anyway to disable or remove the change button in the add/remove programs dialog? My installer currently installs and uninstalls silently (with no UI ) but the Change button seems to only run a custom action and then quits leaving the program in a half uninstalled state. -- .

Re: [WiX-users] Change button in Add/Remove Programs dialog

2007-11-12 Thread Rob Hamflett
Set ARPNOMODIFY to 1. Property Id=ARPNOMODIFY![CDATA[1]]/Property or just Property Id=ARPNOMODIFY1/Property should do the trick. Rob Abdullah Ahmed wrote: Hey guys, Is there anyway to disable or remove the change button in the add/remove programs dialog? My installer currently installs

Re: [WiX-users] Error 2908

2007-11-12 Thread Wilson, Phil
You might be conflicting with other installations of that Dll that are using the official merge module VC_User_STL71_RTL_X86_---.msm, especially if you made up that component guid. Are all the files that have the issue redistributables from Microsoft ? Phil Wilson -Original Message-

Re: [WiX-users] New to WIX, trying to get a UI to appear in my MSI

2007-11-12 Thread David Canning
Hello all, I am having the same issue, I have tried unistalling and reinstalling WiX and ProjectAggregator, and have tried grabbing the latest build from the nightlies, but no luck, has anyone found a resolution to this yet? Re: New to WIX, trying to get a UI to appear in my MSI javascript:

[WiX-users] The operation could not be completed. No such interface supported error trying to save WiX project from VS2005

2007-11-12 Thread David Canning
Sorry, I should have been more specific, I am getting the The operation could not be completed. No such interface supported error when trying to save a WiX project, is there a fix for this? _ From: Pierson Lee (Volt) [mailto:[EMAIL PROTECTED] Sent: Monday, November 12, 2007 2:34 PM

Re: [WiX-users] Error 2908

2007-11-12 Thread Andrew Ward
Hi Phil, No, not all files the error occurs for are even executables or dlls, it actually occurs for every component in the setup, for example, the help file component: Component Id=Manual Guid=MY_GUID File Id=MyProg_chm KeyPath=yes Name=MyProg.chm DiskId=1 Source=../Data/MyProg.chm

Re: [WiX-users] Error 2908

2007-11-12 Thread Chad Petersen
Aren't you supposed to put an actual GUID in where MY_GUID is in your code? I mean, isn't MY_GUID just a placeholder to remind you to plug in a valid GUID? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Ward Sent: Monday, November 12, 2007 11:39

Re: [WiX-users] Error 2908

2007-11-12 Thread Andrew Ward
Hi Chad, Sorry for the confusion, I edited that XML snippet and replaced the real guid with MY_GUID, for easier reading. When the errors occur the Guids are all real Guids. I am having trouble finding out what MS actually means by 'register component' in this context. If I read it out of

Re: [WiX-users] Error 2908

2007-11-12 Thread Wilson, Phil
And there's no lower case in the guids? Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Ward Sent: Monday, November 12, 2007 1:06 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Error 2908 Hi Chad, Sorry for the

Re: [WiX-users] WIX 3.0 toolset build problem.

2007-11-12 Thread Leo ...
Okay, you are right. The latest build from www.sourceforge.net/releases doesn't have the problem but now I running into the problem with the $(DTOOLS) environment variable not found when building wcautil project.Thanks, --Leo Date: Sat, 10 Nov 2007 14:19:04 -0800From: [EMAIL PROTECTED]:

Re: [WiX-users] Error 2908

2007-11-12 Thread Andrew Ward
As there is some confusion here, I will repost an unmodified example, this XML snippet: Component Id=qtdll Guid=FDAFF1E1-E5AF-4a06-ACF2-8C4C94E33F83 File Id=qt_mt338_dll Name=qt-mt338.dll DiskId=1 Source=../qt-mt338.dll Vital=yes /Component Is producing this error: DEBUG: Error 2908:

Re: [WiX-users] Error 2908

2007-11-12 Thread Andrew Ward
Hi Phil, Are you saying that lower case hex in the guids is not allowed? I generally use guids generated using the PlatformSDK GuidGen.exe utility, which produces guids with both uppercase and lowercase hex. Andrew Ward. Wilson, Phil wrote: And there's no lower case in the guids? Phil

Re: [WiX-users] Error 2908

2007-11-12 Thread Chad Petersen
Have you investigated what could possibly be wrong with the XP machine that it fails on? If it works on two systems then I doubt that there is anything wrong with the installer or it would consistently fail on all machines you try it on. The installer is trying to register the Component with the

Re: [WiX-users] Error 2908

2007-11-12 Thread Richard
In article [EMAIL PROTECTED], Andrew Ward [EMAIL PROTECTED] writes: Are you saying that lower case hex in the guids is not allowed? Correct. Windows Installer component GUIDs must be all upper case. Unfortunate, but true. GuidGen is unreliable for this. -- The Direct3D Graphics

Re: [WiX-users] Monitoring progress of chained installs

2007-11-12 Thread John Vottero
Your requirements are similar to ours. We need to ask the user what features they want to install then, depending on their answers, they may need MSMQ and SQL Server. They can also choose not to install SQL Server because they want to use SQL server over the network. We also use IExpress to

Re: [WiX-users] Error 2908

2007-11-12 Thread Bob Arnson
Andrew Ward wrote: DEBUG: Error 2908: Could not register component {FDAFF1E1-E5AF-4A06-ACF2-8C4C94E33F83}. MSI registers each component it installs by recording which product(s) install it; that's all register means in this context. It sounds like MSI's private data store is corrupted

Re: [WiX-users] Installing once for all users

2007-11-12 Thread Bob Arnson
Gonzalo Diethelm wrote: I am using wix 2.0 to install an Excell add-in. The structure of these add-ins is such that they require adding stuff in the registry trees for Excel under both LOCAL_MACHINE (for the generic configuration) and CURRENT_USER (for the user-specific configuration). I can

Re: [WiX-users] New to WIX, trying to get a UI to appear in my MSI

2007-11-12 Thread Bob Arnson
David Canning wrote: Hello all, I am having the same issue, I have tried unistalling and reinstalling WiX and ProjectAggregator, and have tried grabbing the latest build from the nightlies, but no luck, has anyone found a resolution to this yet? What version/edition of Visual Studio? Which

Re: [WiX-users] Error 2908

2007-11-12 Thread Bob Arnson
Richard wrote: Correct. Windows Installer component GUIDs must be all upper case. WiX uppercases all GUIDs in the compiler. There is/was a weakness that if you use !(loc) strings for GUIDs, they wouldn't get that massaging, but in the normal case, you don't have to worry about it. --

Re: [WiX-users] WIX 3.0 toolset build problem.

2007-11-12 Thread Bob Arnson
Leo ... wrote: Okay, you are right. The latest build from www.sourceforge.net/releases http://www.sourceforge.net/releases doesn't have the problem but now I running into the problem with the $(DTOOLS) environment variable not found when building wcautil project. Are you trying to build

Re: [WiX-users] New to WIX, trying to get a UI to appear in my MSI

2007-11-12 Thread David Canning
Using vsts 2005 sp1 with dbpro and couple other addins (codesmart and wholetomato) on xp sp2 32bit. Tried running as admin and nonadmin acct. Are there any logging options to get more details? - Original Message - From: Bob Arnson [EMAIL PROTECTED] To: David Canning Cc:

[WiX-users] Inconsistently uninstalling windows service

2007-11-12 Thread Ben Reichelt
Hello all, I have an msi package that copies my windows service to the Program Files and then creates a windows service for the exe. On uninstall, I stop and remove the windows service. I am using the ServiceInstaller and ServiceControl elements to install/uninstall the service. The msi package

[WiX-users] enabling a control with a radiobutton in the same dialog

2007-11-12 Thread Chris
Hello, I have 2 radiobuttons in a radiobutton-groupbox and I would like to enable/disable another control of the same dialog (which is another radio-groupbox in my case) depending on the checked radio-button. I hope you can help me with this! Regards, Chris