Hi, I am developing an MSI using WIX 3.x. I want to deploy the SQL Serve Command line query tool from my installer package. I have downloaded the same from http://www.microsoft.com/downloads/details.aspx?FamilyID=50B97994-8453-4998-8226-FA42EC403D17&displaylang=en&displaylang=en: I got the error in running the tool from my msi during install execute sequence The error is "Another installation is in progress. You must complete that installation before continuing this one." Pls refer the steps followed by me 1. Copied the "SQLServer2005_SQLCMD.msi" file to temporary directory as below <Directory Id='temp' Name='Temp'>
<Component Id='temp' Guid='C1776274-E3EF-4df6-8686-426DE709865F'> <File Id='SQLCMD_X86.msi' Name='SQLCMD_X86.msi' Source='Binary\SQLCMD_Utility\SQLServer2005_SQLCMD.msi' /> </Component> </Directory> 2. Defined Customaction for executing the utility. <CustomAction Id="Install_SQLCMD_X86" Directory="INSTALLDIR" Return='check' Execute='deferred' ExeCommand="[SystemFolder]msiexec.exe /a "[INSTALLDIR]temp\SQLCMD_X86.msi"" /> 3. Executed the above msi from InstallExecuteSequence as below <Custom Action="Install_SQLCMD_X86" After="InstallFiles">1</Custom> Please help me.. where Im doing mistake? or is there any other way to install the Utility from my MSI? Thanks, sujanakar _________________________________________________________________ Searching for weekend getaways? Try Live.com http://www.live.com/?scope=video&form=MICOAL ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users