Windows UAC 不弹出(访问被拒绝)
我使用 izpack 制作了一个安装程序,它打包为可执行 jar 文件。
通常,当我双击 jar/安装程序文件时,会弹出 Windows 7 UAC 框,并在安装应用程序时授予临时管理员权限(我的 UAC 级别是第二低)。
但由于某种原因,当我双击 jar 文件时,该框不再弹出。因此,当安装程序尝试安装 Windows 服务时,我收到错误“访问被拒绝”(在此过程中,在注册数据库中设置了一些密钥)。
关于如何让 Windows 将 jar 文件识别为安装程序并像以前一样弹出 UAC 框有什么想法吗?
如果我在管理员模式下打开 cmd 并 cd 到 jar 文件并从那里运行它,它就可以正常工作。但让它以另一种方式(正确的方式)工作可能会很好。
I have made an installer using izpack which is packaged as an executable jar file.
Normally when I double click the jar/installer file the windows 7 UAC box pops up and I grant temporary administrator rights when installing the application (my UAC level is second lowest).
But for some reason this box no longer pops up when I double click the jar file. As a consequence I get an error "Access Denied" when the installer tries to install a windows service (during this process some keys are set in the registration database).
Any ideas on how I get windows to recognize the jar file as an installer and pop up the UAC box as previously?
It works fine if I open cmd in administrator mode and cd to the jar file and run it from there. But it could be nice to make it work the other way (correct way).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
izpack/izpack2exe将提示UAC权限提升< /a> 如果您添加元素
到配置文件的
部分。或者,如果您将安装可执行文件命名为包含“setup.exe”或“install.exe”。 exe”,Vista 和 Win7 应该会自动提示 UAC 权限。 (但这并不是万无一失的,因为最终用户可能会下载您的应用程序并更改名称,或者如果您使用 JAR 发行版......)
Izpack/izpack2exe will prompt for UAC privilege elevation if you add the element
<run-privileged/>
to the<info>
section of the config file.Or, if you name the installation executable to include "setup.exe" or "install.exe", Vista and Win7 should automagically prompt for UAC privs. (But this isn't foolproof, as an end-user may download your app and change the name, or if you use a JAR distribution...)