windows 7 对安全方面的管理要比XP严格多了,但是如果你写了一个程序需要以管理员权限运行怎么办呢?
就像这样
ok,我也是参考了很多其他人的文章 比如:
http://wwwblogs/eaglet/archive/2011/04/22/2024466.html
http://blog.csdn/sysprogram/article/details/6710092
在visual stuido 2010 中的设置就是这个样子的
当你调试时会出这样的对话框
就是必须以管理员权限运行VS,你要选择使用其他凭据重新启动。
你的程序生成后呢就会有一个小盾的标志,如图
------------------------------------------------------------------------------------------
在win7现还会出现 你的程序可能未能正常运行。
解决方案:
在工程中加入xx.manifest文件,在文件中写入以下内容,
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!--The ID below indicates application support for Windows Vista -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
<!--The ID below indicates application support for Windows 7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
</application>
</compatibility>
</assembly>
windows 7 对安全方面的管理要比XP严格多了,但是如果你写了一个程序需要以管理员权限运行怎么办呢?
就像这样
ok,我也是参考了很多其他人的文章 比如:
http://wwwblogs/eaglet/archive/2011/04/22/2024466.html
http://blog.csdn/sysprogram/article/details/6710092
在visual stuido 2010 中的设置就是这个样子的
当你调试时会出这样的对话框
就是必须以管理员权限运行VS,你要选择使用其他凭据重新启动。
你的程序生成后呢就会有一个小盾的标志,如图
------------------------------------------------------------------------------------------
在win7现还会出现 你的程序可能未能正常运行。
解决方案:
在工程中加入xx.manifest文件,在文件中写入以下内容,
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!--The ID below indicates application support for Windows Vista -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
<!--The ID below indicates application support for Windows 7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
</application>
</compatibility>
</assembly>