gpt4 book ai didi

c# - 如何强制我的 C# Winforms 程序在任何计算机上以管理员身份运行?

转载 作者:IT王子 更新时间:2023-10-29 04:10:36 25 4
gpt4 key购买 nike

如何强制我的 C# Winforms 程序在任何计算机上以管理员身份运行?以及任何类型的操作系统?

我需要代码解决方案(任何示例代码都很棒)

提前致谢

最佳答案

您可以将此 list 嵌入到您的应用程序中。

<?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" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
</asmv1:assembly>

关于c# - 如何强制我的 C# Winforms 程序在任何计算机上以管理员身份运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3598824/

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