I think I fixed it kind of...by putting in INSTALLLEVEL = 1000 in my
installexecutesequence it seems to work...no more 2753 errors.  Now to
figure out how to get .NET, itechlogger, and SQL to install.  Yes pretty
much.  I want this one installer to install everything I need.  .NET throws
a syntax error dialog, and itech and sql throw command line parameter
diaglog boxes.  So I guess those are the ones that don't want to be
installed automatically.  Is there an error log soemwhere?


Pierson Lee (Volt) wrote:
> 
> Anything that runs a Windows installer based install won't work because
> windows installer doesn't like running multiple instances simultaneously.
> The only way I've been able to trick it is to get the subsequent msi to
> kick off at the end(very end) of the installation process but it sounds
> like that wouldn't be a good idea in your case with you deploying a
> multitude of items. What are you attempting to do? Write an installer that
> installs all of your components?
> 
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10
> Sent: Friday, July 27, 2007 12:07 PM
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Error code 2753?
> 
> 
> Are there any other things it will never ever work for?  Because I've
> commented out .net, and I still am installing itechlogger and microsoft
> sql
> 
> 
> Mike Dimmick-2 wrote:
>>
>> That will never, ever work for the .NET Framework. .NET Framework is an
>> MSI-based install, so you can't run it nested inside another MSI anyway.
>> It
>> also has to play some peculiar tricks with the Windows Installer service
>> to
>> get updated versions of Fusion (the assembly loader) on there, as I
>> recall.
>>
>> No options: you MUST use a bootstrapper to get the .NET Framework
>> installed.
>>
>> --
>> Mike Dimmick
>>
>> -----Original Message-----
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10
>> Sent: 26 July 2007 22:48
>> To: wix-users@lists.sourceforge.net
>> Subject: [WiX-users] Error code 2753?
>>
>>
>> Trying to get my installer to work.  It works for the main files but
>> there
>> are some files I don't want to install unless I click Complete (as
>> Opposed
>> to typical, I'm using mondo).  It copies the files correctly regardless
>> but
>> when I also want it to run the ones that it copies.  I think the problem
>> is
>> because of TypicalDefault="advertise" but isn't that how I set a feature
>> to
>> not be installed typically but only under comlpete? Example:
>>
>> <Directory Id="dotnetfx" Name="dotnetfx">
>>               <Component Id="dotnetfx.exe"
>> Guid="{3AF116C7-E703-4F4D-B7BC-B9D4C0E0F093}">
>>                 <File Id="dotnetfxexe" Name="dotnetfx.exe" KeyPath="yes"
>> Source="C:\tfs\ChannelBox\prereq\dotnetfx\dotnetfx.exe" />
>>               </Component>
>> </Directory>
>> --------------------------
>> <Feature Id='dotnetfx' Title='Microsoft .NET Framework' Level="1"
>> TypicalDefault="advertise">
>>         <ComponentRef Id="dotnetfx.exe" />
>> </Feature>
>> --------------------------
>> <CustomAction
>>                 Id="DotNetInstall"
>>                 FileKey="dotnetfxexe"
>>                 ExeCommand="deferred"
>>                 Return="ignore" />
>>
>>     <InstallExecuteSequence>
>>       <Custom
>>               Action="DotNetInstall"
>>               After="InstallFinalize">
>>
>>       </Custom>
>> </InstallExecuteSequence>
>> --
>> View this message in context:
>> http://www.nabble.com/Error-code-2753--tf4154344.html#a11819770
>> Sent from the wix-users mailing list archive at Nabble.com.
>>
>>
>> -------------------------------------------------------------------------
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
>> -------------------------------------------------------------------------
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
> 
> --
> View this message in context:
> http://www.nabble.com/Error-code-2753--tf4154344.html#a11835135
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> 
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Error-code-2753--tf4154344.html#a11835620
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to