Link to home
Start Free TrialLog in
Avatar of alpires
alpiresFlag for Brazil

asked on

Create Manifest for Windows7 and Delphi XE2

Hi Experts, I create a manifest for windows vista and Windows 7 (UAC) to running my proggram under administrative rights.

My problem is in delphi XE this manifest work well but dont work in delphi XE2. Anyone know anything about it.

My manifest files is:

<?xml version="1.0" encoding="utf-8"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel level="requireAdministrator" />
      </requestedPrivileges>
    </security>
  </trustInfo>
</assembly>

This manifest work well in Delphi7 and XE, but when I updated my delphi to XE2 this manifest stopped working.
Some Idea

Thanks
Alexandre
Brazil
ASKER CERTIFIED SOLUTION
Avatar of Ferruccio Accalai
Ferruccio Accalai
Flag of Italy image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial