zoukankan      html  css  js  c++  java
  • 在C++Builder2010中支持UAC机制

    1. 将下面内容保存为文件UAC.XML,注意编码方式为 UTF-8 

    --------------------------------------------------以下是UAC.XML内容--------------------------------------------------

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>    

    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">    

      <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">    

        <security>    

          <requestedPrivileges>    

            <requestedExecutionLevel level="requireAdministrator" uiAccess="false"> 

            </requestedExecutionLevel>    

          </requestedPrivileges>    

        </security>    

      </trustInfo>    

      <dependency>    

        <dependentAssembly>    

          <assemblyIdentity type="win32"    

                 name="Microsoft.Windows.Common-Controls"    

                 version="6.0.0.0"    

                 processorArchitecture="x86"    

                 publicKeyToken="6595b64144ccf1df"    

                 language="*"> 

          </assemblyIdentity>    

        </dependentAssembly>    

      </dependency>    

    </assembly>

    --------------------------------------------------以上是UAC.XML内容--------------------------------------------------


    2. 将下面内容保存为文件uac.rc 

    1 24 "UAC.XML"


    其中:  

      1-代表资源编号  

      24-资源类型为RTMAINIFEST   

      UAC.XML前面的文件名称 


    uac.rc 和UAC.XML都放在工程文件夹下面  


    3. 将uac.rc加入到C++Builder2010项目,编译链接。




    不成功的可以试试国外的方法:

    http://tapanpandey.com/2009/08/30/adding-uac-elevation-manifest-in-visual-c-8-0-visual-studio-2005-c-or-c-project/


    To add application manifest to a C or C++ application in Visual Studio 2005 so that Vista automatically display the elevation dialog while the application launch do the following steps:

    1. Open the notepad and write down following statement to the file
      <?xml version=”1.0″ encoding=”UTF-8″ standalone=”yes”?>
      <assembly xmlns=”urn:schemas-microsoft-com:asm.v1″ manifestVersion=”1.0″>
      <assemblyIdentity
      version=”1.0.0.0″
      processorArchitecture=”X86″
      name=”Microsoft.Windows.EnableUAC”
      type=”win32″/>
      <trustInfo xmlns=”urn:schemas-microsoft-com:asm.v2″>
      <security>
      <requestedPrivileges>
      <requestedExecutionLevel
      level=”requireAdministrator”
      uiAccess=”false”/>
      </requestedPrivileges>
      </security>
      </trustInfo>
      </assembly>
       

    2. Save the file as <your app name >.exe.manifest into the res folder of your project.

    3. Click Project submenu, select Properties command in your Visual Studio IDE.

    4. In Properties, select Manifest Tool command, and then selectInput and Output.

    5. Add in the name of your application manifest file underAdditional manifest files.

    6. Rebuild your application.

    7. If you have adding the elevation script properly then you can see vista shield icon overlay with your app icon in output folder.

    8. Run the application to test the elevation. Make sure that you have not disabled the UAC for current user.

      

  • 相关阅读:
    Hanoi塔
    采药
    进制转换(大数)
    Load Balancing with NGINX 负载均衡算法
    upstream模块实现反向代理的功能
    epoll
    在nginx启动后,如果我们要操作nginx,要怎么做呢 别增加无谓的上下文切换 异步非阻塞的方式来处理请求 worker的个数为cpu的核数 红黑树
    粘性会话 session affinity sticky session requests from the same client to be passed to the same server in a group of servers
    负载均衡 4层协议 7层协议
    A Secure Cookie Protocol 安全cookie协议 配置服务器Cookie
  • 原文地址:https://www.cnblogs.com/phyking/p/4456630.html
Copyright © 2011-2022 走看看