Custom manifest admin rights problem

Post here any topics that related to Enigma Protector, its functionality, your misunderstanding, offers to improvements etc etc etc
Post Reply
Tony
Posts: 41
Joined: Mon Jul 12, 2010 1:53 pm

Custom manifest admin rights problem

Post by Tony »

I tried using this custom manifest on the latest enigma and im having problems running the application

<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>


Can someone help rectify my problem?
Error message
"This application has fail to start because the application configuration is incorrect"
Alec
Posts: 82
Joined: Thu Feb 20, 2014 9:35 am

Re: Custom manifest admin rights problem

Post by Alec »

Hi, please use the following manifest

Code: Select all

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
   <ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2">
      <ms_asmv2:security>
         <ms_asmv2:requestedPrivileges>
            <ms_asmv2:requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
         </ms_asmv2:requestedPrivileges>
      </ms_asmv2:security>
   </ms_asmv2:trustInfo>
</assembly>
Post Reply