I have been trying to embed a manifest to an executable file which was given to me. Here are my steps:
- Extract the current manifest from the executable (using resourceExtractor)
Modified the requestedExecutionlevel from asInvoker to requireAdministrator
requestedExecutionLevel level="requireAdministrator" uiAccess="false"Embed the manifest back to the executable file using mt.exe
mt.exe -nologo -manifest "C:\Users\Window_7PC\Desktop\Result\Dermatoglyphics System_1.manifest" -outputresource:"D:\New Installer\Prg\Dermatoglyphics System.exe;#1"
I have tried to install on 3 laptops (Windows 7 Ultimate,Enterprise and Professional). On the first two OS, the executable will always require administrator privilege to run. However on the last laptop (Windows 7 Professional), the executable seems like to ignore the embedded manifest. Also, I am unable to extract back the manifest file from my 'modified' executable. Anyone has any idea on this issue?