Commit 3a0f471e authored by Steve Dower's avatar Steve Dower

Issue #25213: Restores requestedExecutionLevel to manifest to disable UAC virtualization.

parent 9b93c6b5
...@@ -147,6 +147,9 @@ Build ...@@ -147,6 +147,9 @@ Build
Windows Windows
------- -------
- Issue #25213: Restores requestedExecutionLevel to manifest to disable
UAC virtualization.
- Issue #25022: Removed very outdated PC/example_nt/ directory. - Issue #25022: Removed very outdated PC/example_nt/ directory.
What's New in Python 3.5.0 final? What's New in Python 3.5.0 final?
......
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo>
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application> <application>
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment