how to keep certain files when upgrading using installshield LE?

前端 未结 2 1542
无人共我
无人共我 2020-12-21 06:02

I am developing a Winforms app using C# and VS 2010. This app will use a SQLite database that will be deployed with the initial installation of the app.

When I have

相关标签:
2条回答
  • 2020-12-21 06:19

    In component properties:

    1) make sure that Permanant = yes

    2) make sure that Shared = yes

    file marked as key file not getting unistalled while using installshield

    0 讨论(0)
  • 2020-12-21 06:43

    This is usually done through backup and restore custom actions and it's not supported by InstallShield LE. Basically, a custom action creates a backup before the old version is uninstalled and another custom action restores it after install.

    Another solution is to move RemoveExistingProducts action towards the installation end. This approach has many limitations and is also not supported by InstallShield LE.

    Basically, you can try using the InstallShield LE custom action support to somehow configure backup and restore custom actions. But most likely you will need to use a different setup authoring tools which offers more control over installer actions.

    0 讨论(0)
提交回复
热议问题