本文介绍了应用需求管理员的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好,
我写了一个小应用程序.
它可以正常运行,但是该程序需要管理员密码.
我创建了一个由于VS2008安装.
程序安装在c:\ programme \ CalculateTest \
如果要启动此应用程序,我将从Windows获得第一个用户名/密码Windows.
如何禁用此功能?我的应用程序无需访问系统文件.
这是应用程序/项目/设置中的属性吗?
thx,
古木
我发现了
"level =" requireAdministrator"
这是我的问题吗?
Hello,
i have written a small application.
It running correctly but the program need Administrator password.
I created a Install due VS2008.
Program installed on c:\programme\CalculateTest\
If I want to start this application, i get first Username/Password-Windows from Windows.
How can I disable this? My Application need no access to System files.
Is this a property in application / Project / setup?
thx,
GuMu
I found
"level="requireAdministrator"
is this my problem?
<?xml version="1.0" encoding="utf-8" ?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="3.1.21.0"
processorArchitecture="X86"
name="CalculateTest.exe"
type="win32" />
<description>CalculateTest</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
推荐答案
这篇关于应用需求管理员的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!