如何在 Visual Studio 2010 中使用清单文件选项禁用 UAC 提示

发布于 2024-12-04 00:27:36 字数 125 浏览 3 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

垂暮老矣 2024-12-11 00:27:36

如果您启用了 UAC 并且脚本需要提升才能执行某些任务,则无法停止提示。

您可以通过执行以下操作来强制脚本以提升的权限运行:

 Dim proc As New ProcessStartInfo
    With proc
        .FileName = "C:\Windows\regedit.exe" 'replace with your script name
        If Environment.OSVersion.Version.Major >= 6 Then ' Windows Vista or higher
            .Verb = "runas"
        Else
            ' No need to prompt to run as admin
        End If
        Process.Start(proc)
 End With

您唯一的其他选择是关闭 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:

 Dim proc As New ProcessStartInfo
    With proc
        .FileName = "C:\Windows\regedit.exe" 'replace with your script name
        If Environment.OSVersion.Version.Major >= 6 Then ' Windows Vista or higher
            .Verb = "runas"
        Else
            ' No need to prompt to run as admin
        End If
        Process.Start(proc)
 End With

Your only other option is to turn UAC off

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文