我已經使用Verisign簽署了我的應用程序,將所有註冊表變量存儲在HKCU中,以便不要求管理權限,但UAC命令仍會提示用戶是否他/她希望以下內容對他/她的計算機進行更改。我如何防止這種情況發生。我每次開始申請時如何擺脫UAC
下面顯示了VS
<?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='asInvoker' uiAccess='false' />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*' />
</dependentAssembly>
</dependency>
</assembly>
你能告訴我們你的應用程序清單的內容嗎? –
我已經添加了在visual studio中生成的清單文件。 – Federico