Created
May 5, 2020 21:04
-
-
Save cicorias/abdeda0be5dca26b7daa58b10a68f2d6 to your computer and use it in GitHub Desktop.
patch.exe manifest to prevent UAE with the Patch.exe that comes with Git for windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="patch.exe" | |
type="win32"/> | |
<!-- Identify the application security requirements. --> | |
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
<security> | |
<requestedPrivileges> | |
<requestedExecutionLevel | |
level="asInvoker" | |
uiAccess="false"/> | |
</requestedPrivileges> | |
</security> | |
</trustInfo> | |
</assembly> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment