diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2009-02-09 08:54:45 +0100 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2009-02-09 08:54:45 +0100 |
commit | a055652117c79136a44267c78dfa6df882435374 (patch) | |
tree | 23ba58d5b1d7eec6964d6f1c2ff2ad964f27e9f3 | |
parent | e8b390f73086d43b7a1e4b84c7f25fd57a7056a1 (diff) |
Add manifest files to request highest available execution level under Windows Vista UAC
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | win/photorec_win.exe.manifest | 12 | ||||
-rw-r--r-- | win/testdisk_win.exe.manifest | 12 |
3 files changed, 25 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 37ba474..7c235ca 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = AUTHORS COPYING ChangeLog INFO INSTALL NEWS README THANKS compile.s ico/photorec.ico ico/testdisk.ico \ linux/testdisk.spec.in \ src/icon_ph.rc src/icon_tst.rc \ - win/readme.txt + win/readme.txt win/photorec_win.exe.manifest win/testdisk_win.exe.manifest AUTOMAKE_OPTIONS = gnits diff --git a/win/photorec_win.exe.manifest b/win/photorec_win.exe.manifest new file mode 100644 index 0000000..e00065b --- /dev/null +++ b/win/photorec_win.exe.manifest @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="photorec_win.exe" type="win32"/>
+<description>PhotoRec, signature based recovery tool</description>
+<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
+<security>
+<requestedPrivileges>
+<requestedExecutionLevel level="highestAvailable" uiAccess="false"/>
+</requestedPrivileges>
+</security>
+</trustInfo>
+</assembly>
diff --git a/win/testdisk_win.exe.manifest b/win/testdisk_win.exe.manifest new file mode 100644 index 0000000..d13ad79 --- /dev/null +++ b/win/testdisk_win.exe.manifest @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="testdisk_win.exe" type="win32"/>
+<description>TestDisk, Data Recovery Utility</description>
+<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
+<security>
+<requestedPrivileges>
+<requestedExecutionLevel level="highestAvailable" uiAccess="false"/>
+</requestedPrivileges>
+</security>
+</trustInfo>
+</assembly>
|