如何在 Visual Studio 2010 中使用清单文件选项禁用 UAC 提示
我想在 vs 2010 中使用 vb.net 执行 autoit 脚本。执行时不断提示。是否可以将清单文件嵌入到 vb.net 中的类库类型项目中。目前我看不到任何添加清单的选项。或者请提供任何其他建议,以在从代码执行脚本时禁用该提示。
I want to execute autoit script using vb.net in vs 2010. While executing it keeps prompting. Is it possible to embed a manifest file in a class lib type project in vb.net. As currently I cant see any option to add a manifest. Or plz any other suggestions to disable that prompt to occur while executing a script from code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您启用了 UAC 并且脚本需要提升才能执行某些任务,则无法停止提示。
您可以通过执行以下操作来强制脚本以提升的权限运行:
您唯一的其他选择是关闭 UAC
There is no way to stop the prompt if you have UAC enabled and the script requires elevation to perform some task.
You can force the script to run elevated by doing something like the following:
Your only other option is to turn UAC off