0

I need to include both versions of SQL Server CE 4.0 Runtime in my install shield setup application so the user can use the same version of an installer on both system architectures (x86 and x64).

I found a good solution here: https://stackoverflow.com/a/10224981/382011

But this requires to create two diffrent installers for x86 and x64. In my case I need to combine those two into one setup. How can I modify PRQ files from example to achive it?

Community
  • 1
  • 1
Łukasz W.
  • 9,538
  • 5
  • 38
  • 63

1 Answers1

0

You could create a single bundled installer, that installs the correct package based on the machine architecture. To do this is quite easy using Burn from Wix, the following SO thread has an example.

After that you can create a single prerequisite file that installs the bundle.

The installation of the corespondent SQL Server CE prerequisite will be handled automatically by the bundle, so you will separate this logic from the main installer.

Community
  • 1
  • 1
Bogdan Mitrache
  • 10,536
  • 19
  • 34