Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试在 C# 中创建自定义设置应用程序时,我需要 requireAdministrator 权限。
我需要 requireAministrator 权限来防止“此程序可能未正确安装”消息。
通常这是通过将以下行添加到您的应用程序清单来完成的,如此处所述。
但问题并没有解决。
经过几个小时的搜索,我找到了这个。
简而言之:在构建 x86 应用程序时,Windows 7 x64 中的应用程序清单可能会被忽略。
当我将平台目标更改为 x64 时,清单不再被忽略。我的问题就解决了。