Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created May 5, 2020 21:04
Show Gist options
  • Save cicorias/abdeda0be5dca26b7daa58b10a68f2d6 to your computer and use it in GitHub Desktop.
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
<?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