添加一个选项以在卸载时删除或保留已安装的文件?

发布于 2024-12-04 01:50:46 字数 118 浏览 0 评论 0原文

我正在使用 Visual Studio 安装项目来创建我的安装程序。

卸载时如何为用户提供保留或删除文件和/或文件夹的选项?安装包括一个数据库,并且可能希望将其保留在磁盘上以及相关内容,以便重新安装或升级。

I'm using the Visual Studio Setup Project to create my installer.

How can I give the user an option to either keep or remove files and/or a folder when uninstalling? The install includes a database and the may want to keep this on disk and associated content in case they re-install or upgrade.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

給妳壹絲溫柔 2024-12-11 01:50:46

您可以添加自定义卸载程序 System.Configuration.Install.Installer 将询问选择,然后根据结果删除文件,甚至更好地添加一个带有单选按钮的向导页面来询问决定并将所选按钮值作为参数传递给安装帮助程序。请参阅 InstallHelper 示例,了解如何将这些选项值传递给您自己的帮助程序类。

you could add a custom uninstaller System.Configuration.Install.Installer that will ask for the choice and then removes the files depending on the result or even better add a wizard page with a radio button to ask for the decicion and pass the selected button value to your install helper as arguments. See InstallHelper samples how you can pass these option values to your own helper class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文