Skip to content

Commit

Permalink
fixes #1 - patch.exe raises UAC prompt
Browse files Browse the repository at this point in the history
Uses manifest to avoid UAC issue (copied from Komodo Edit repo)
  • Loading branch information
Todd Whiteman committed Apr 23, 2014
1 parent 2a440fd commit a318443
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions platform/WINNT/patch.exe.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?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>

0 comments on commit a318443

Please sign in to comment.