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="JPACKAGE"
   4          processorArchitecture="X86"
   5          name="jpackage.exe"
   6          type="win32"/>
   7   <description>Java Packaging Tool</description>
   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 
  19   <!-- Indicate JDK is high-dpi aware. -->
  20   <asmv3:application>
  21     <asmv3:windowsSettings
  22            xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
  23        <dpiAware>true</dpiAware>
  24     </asmv3:windowsSettings>
  25   </asmv3:application>
  26 
  27   <!-- Indicate this JDK version is Windows 7 compatible -->
  28    <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
  29       <application>
  30         <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
  31         <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
  32       </application>
  33     </compatibility>
  34 </assembly>