mehdi
mehdi

Reputation: 1755

Add a new Redistributables to VS InstallShield LE Project

i want to add Microsoft SQL CE 4.0 to my VS InstallShield LE Project Redistributables

I've done this steps:

and Result:

VS InstallShield LE Project Redistributables

The project was built successfully, But the installer can't install SQL CE 4.0..

Can anyone help me?

Upvotes: 3

Views: 12250

Answers (1)

Christopher Painter
Christopher Painter

Reputation: 55581

InstallShield Limited Edition doesn't have the Prereq editor found in Professional and Premier. I assume this means you edited the PRQ XML by hand. If so, how were you able to make out the schema? There is no XSD and some of the fields are integers that would be meaningless without the tool to help you work it out.

Here's an old blog article showing how to use the tool:

http://blog.iswix.com/2006/11/using-installshield-12-to-install-net.html

If it was me, I'd download an Eval copy of Professional or Premier and throw it on a VM. Use the tool to edit the PRQ and then copy it back to your LE installation. Also there is another stack overflow answer where someone said they wrote their own PRQ and posted the code.

SQL CE 4.0 as a InstallShield Prerequisite

The fact that it builds tells you all the various files were found. The fact that it doesn't install means there is something wrong with your XML.

Upvotes: 6

Related Questions