I am trying to load SQL Server 2008 Express SP1 into my application. I used to use Wise for Windows to perform a preinstall, but Wise does not yet support the Windows 4.5 installer.
Now I'm trying to use Visual Studio 2008 bootstrap technology with WiX 3.0 and have a good chance of getting SQL Server prerequisites and can get a manifest for SQL Express 2008, but not SP1. In addition, I need to be able to localize SQLAccount, but I will not be able to do this by changing package.xml AFAIK. In my previous solution, using Wise, I was able to collect a localized string from the target system and pass the parameter directly to the installer command line.
So, two questions:
Where can I find bootstrap manifest files for SP1 (or can I create them?)
How can I localize SQLAccount, since it seems that the command line parameters are resolved at compile time with the Visual Studio loader.
source share