为什么我的应用程序在 XP 和 Vista 的控制面板中显示两个“添加/删除”图标?
为了避免控制面板中“更改”选项中的管理员权限问题,我编辑了“NoRepair”和“NoModify”注册表项以使用值 1
和“WindowsInstaller”以使用 0
>。通过这样做,我在从控制面板卸载时可以获得完整的用户界面。
但问题是:通过将“WindowsInstaller”设置为 0
,控制面板会在 Windows XP 和 Windows Vista 中显示我的应用程序的两个“添加/删除”图标。
To avoid admin privileges problem in "Change" option from Control Panel, I edited "NoRepair" and "NoModify" registry entries to use the value 1
and "WindowsInstaller" to use 0
. By doing this, I am getting full UI when uninstalling from Control Panel.
But here is the problem: by setting "WindowsInstaller" to 0
, Control Panel shows two Add/Remove icons of my application in Windows XP and Windows Vista.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决这个问题有一段时间,并找到了一个解决方案...
我在我的基本 MSI 项目中添加了一个值为“1”的属性“ARPSYSTEMCOMPONENT”,因此应用程序的所有控制面板图标都被删除了...
然后我添加了另一个注册表我的应用程序在“HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\”下带有所需的卸载字符串且没有“WindowsInstaller”键...
因此它在控制面板中仅显示一个图标,并且卸载的行为与我一样需要....
I work around this issue for sometime, and found one solution...
I add one property "ARPSYSTEMCOMPONENT" with value "1" in my basic MSI project, thus all control panel icons of applications were removed...
Then i add another registry key for my application under "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" with desired uninstallstring and without "WindowsInstaller" key...
Thus it shows only one icon in control panel, and also the behaviour of uninstallation is as i needed....