gpt4 book ai didi

.net - 以管理员身份运行 .NET 应用程序

转载 作者:行者123 更新时间:2023-12-04 16:20:52 27 4
gpt4 key购买 nike

自从 Vista 和 Windows 7 出现以来,我的一些 .NET 应用程序开始抛出安全异常。

我注意到一些应用程序(即我的防病毒软件、控制面板)有一个小盾牌,当我运行这些应用程序时,Windows 会自动向我请求管理员权限。

我知道作为用户,我可以将应用程序设置为以管理员身份运行,但这还不够好,因为如果应用程序在没有特权的情况下运行,它会在我的用户计算机上崩溃。

有没有办法告诉windows(以编程方式)我希望应用程序以管理权限运行?

最佳答案

创建一个应用程序 list ,将requestedExecutionLevel 设置为requireAdminstrator:

示例(添加应用程序 list 时由 VS 生成):

<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.

<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />

If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
</asmv1:assembly>

如果将它添加到 Visual Studio 应用程序项目,则编译时它将嵌入到程序集中。

关于.net - 以管理员身份运行 .NET 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1781734/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com