Skip to content

Commit a318443

Browse files
author
Todd Whiteman
committed
fixes #1 - patch.exe raises UAC prompt
Uses manifest to avoid UAC issue (copied from Komodo Edit repo)
1 parent 2a440fd commit a318443

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

platform/WINNT/patch.exe.manifest

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3+
<assemblyIdentity version="1.0.0.0"
4+
processorArchitecture="X86"
5+
name="patch.exe"
6+
type="win32"/>
7+
8+
<!-- Identify the application security requirements. -->
9+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
10+
<security>
11+
<requestedPrivileges>
12+
<requestedExecutionLevel
13+
level="asInvoker"
14+
uiAccess="false"/>
15+
</requestedPrivileges>
16+
</security>
17+
</trustInfo>
18+
</assembly>

0 commit comments

Comments
 (0)