How to add manifest info into delphi project
Here are some links Delphi and Windows Vista User Account Control Vista UAC Manifest Here are the steps: Create XML file with following content: <?xml version=”1.0″ encoding=”UTF-8″ standalone=”yes”?> <assembly xmlns=”urn:schemas-microsoft-com:asm.v1″ manifestVersion=”1.0″> <assemblyIdentity version=”1.1.1.1″ processorArchitecture=”X86″ name=”YourApplicationExeName” type=”win32″/> <description>elevate execution level</description> <trustInfo xmlns=”urn:schemas-microsoft-com:asm.v2″> <security> <requestedPrivileges> <requestedExecutionLevel level=”requireAdministrator” uiAccess=”false”/> </requestedPrivileges> </security> </trustInfo> </assembly> Name this XML file as … Read more