An MSI file is a standard format, so whether it was built by InstallShield or not should be mostly irrelevant.
But.....there's nothing to dothis in VS setup projects. The closest you could get is to ise the Dark tool from WiX which reverse engineers an MSI file into WiX source. However, you're likely to have a bunch of problems for which I know of no solution:
1) InstallShield has more functionality than VS setup projects. If that setup is organised into features, has custom dialogs, immediate custom actions, deferred custom actions that are required to be in a specific point in the install, any custom actions at all in the UI sequencethen VS does none of these things. That's not a complete list, just what I think may be the most common.
2) If there are custom actions, then how can you rebuild the setup without the source? There might be InstallScript custom actions (their proprietary scripting language) as well as more normal custom actions in C++, VBScript etc. Phil Wilson- Marked As Answer byBarberColman Monday, July 13, 2009 8:10 PM
-
|