当我试图卸载一个应用程序时,我得到一个错误。我使用NSIS为它制作了安装和卸载程序。应用程序已卸载,但未从添加/删除程序中删除。该错误看起来像是“尝试卸载时发生错误,可能已卸载”
发布于 2017-03-17 21:51:23
您需要在卸载部分中删除与添加/删除程序注册相关的注册表项。
另请参阅“所需值”here一节的最后一段。
例如,它可能如下所示:
Section Uninstall
; ...here the existing uninstall code goes...
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WhateverNameYouHadUsedHereBefore"
SectionEndhttps://stackoverflow.com/questions/42859150
复制相似问题