【轉】vc++MCF/C++/C中怎樣讓應用程式獲得或以管理員權限運行 ,ShellExecuteEX編程 --- 擷取管理員權限

來源:互聯網
上載者:User

標籤:man   ace   href   dex   targe   有用   相容性   ora   identity   

ShellExecuteEX編程 --- 擷取管理員權限:http://blog.csdn.net/jhui163/article/details/5873027

怎樣讓你的應用程式獲得管理員權限:就是在運行開發工具如vc6.0 或vs2010時,要以管理員身份運行,這樣你的應用程式才可以繼承

http://bbs.csdn.NET/topics/390262991

 

解決:在vs2010等開發工具中雖然以管理員身份編譯運行了程式,可以獲得管理員權限,但是當單獨點擊Debug或release版時,又好像沒有獲得管理員權限,第一次點擊不行,第二次才獲得管理員權限

方法一:

1找到VS2010的捷徑:右擊——“開啟檔案位置”
找到VS2010的啟動項目devenv.exe:右擊——屬性——相容性——特權等級,以管理員權限運行;如果需要每個使用者都以管理員權限運行,還可以“更改所有使用者的設定”——特權等級,以管理員權限運行。
然後在項目的開啟檔案中確保以VS2010為預設開啟程式就好了。

2 屬性--連接器--資訊清單檔-》UAC執行層級-》requireAdministrator (/level=‘requireAdministrator‘)

方法二

資訊清單檔:建立如app.mainfest的資訊清單檔,在項目(屬性--連接器--資訊清單檔)添加資訊清單檔
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentityversion="1.0.0.0" processorArchitecture="X86" name="VistaLogoDemo" type="win32"/>
  <description>Description of your application</description>
  <!-- Identify the application security requirements.-->
  <trustInfoxmlns="urn:schemas-microsoft-com:asm.v3">
  <security>
  <requestedPrivileges>
  <requestedExecutionLevellevel="requireAdministrator" uiAccess="false"/>
  </requestedPrivileges>
  </security>
  </trustInfo>
 </assembly>
參考連結:http://blog.csdn.Net/penglijiang/article/details/7178594

from:http://blog.csdn.net/zhangyulin54321/article/details/8802023

【轉】vc++MCF/C++/C中怎樣讓應用程式獲得或以管理員權限運行 ,ShellExecuteEX編程 --- 擷取管理員權限

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.