如何在 Windows 添加/删除程序列表中添加程序
如何添加该程序以便将其列在 Windows 的添加/删除程序列表中(以便我可以单击它来卸载)?
How do i add the program so that it is listed (so i can click on it to uninstall) in windows's add/remove program list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
卸载注册存储在注册表中,您应该将其保存在注册表中的位置取决于您的安装程序是为所有用户还是单个用户安装程序(IE您的RequestExecutionLevel设置):
只需要两个值:DisplayName 和 UninstallString。
您可以设置几个可选值,MSDN 并未真正提供记录值的列表,但 NSIS Wiki 有一个不错的列表,此页面有一个更完整的列表。 ..
The uninstall registration is stored in the registry, where in the registry you should save it depends on if your installer installs the program for all users or a single user (IE your RequestExecutionLevel setting):
There are only two values that are required: DisplayName and UninstallString.
There are several optional values you can set, MSDN does not really provide a list of documented values but the NSIS Wiki has a decent list and this page has a even more complete list...
用法示例:
Example usage: