卸载界面
安装程序是使用 Visual Studio 2010 安装项目创建的。安装项目为开发人员提供了一种在安装过程中自定义 UI 的方法。有没有办法对卸载执行相同的操作?
The installer is created using a Visual Studio 2010 Setup project. The Setup project provides a way for developers to customize the UI during installation. Is there a way to do the same for uninstallation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将一个名为(例如)PostUnInstall 的项目添加到您的解决方案中。
右键单击安装项目,选择“自定义操作”。
将自定义操作添加到 UnInstall,指向“PostInstall 项目输出”。
取消选中“安装程序类”(非常重要,否则将无法工作)。
卸载结束时,您的 PostUnInstall 将被执行。
Add a project to your solution called (for example) PostUnInstall.
Right-click the setup project, select "Custom Actions".
Add a custom action to UnInstall, pointing to "PostInstall project output".
Uncheck "Installer class" (very important, or it won't work).
At the end of the uninstall, your PostUnInstall will be executed.