Inno setup 要求用户在安装完成后重新启动系统,以使系统应用 HKLM 中的更改
我使用最新的 inno setup 5.3 来打包我的 vb.net 应用程序。我在安装Windows系统时设置环境变量。它需要重新启动系统才能实施环境变量中所做的更改。我如何提示用户重新启动系统以实施更改(如许多应用程序中所做的那样)。有没有示例ISS代码可供参考。
Im using inno setup 5.3 latest to package my vb.net application. Im setting Environment variables during installation to the windows system. It needs a reboot of the system to implement the changes made in the Environment variables. How do i prompt the user to reboot the system so as to implement changes ( as done in many applications). Is there any sample iss code for reference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
[Setup]:AlwaysRestart
设置。或者,您可以使用
ChangesEnvironment
设置="http://www.jrsoftware.org/ishelp/topic_setupsection.htm" rel="noreferrer">[Setup]
部分可能更适合您的情况。优点是用户不需要重新启动系统。You may use the
[Setup]: AlwaysRestart
setting.Alternativly you could use the
ChangesEnvironment
setting in the[Setup]
section which may be more adequate in your case. The advantage is, that the user doesn't need to restart the system.