1<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
3          manifestVersion="1.0"
4          xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
5>
6<assemblyIdentity
7    version="IMVERSION"
8    processorArchitecture="X86"
9    name="Oracle Corporation, Java(tm) 2 Standard Edition"
10    type="win32"
11/>
12<description>Java(TM) SE PROGRAM process</description>
13<dependency>
14    <dependentAssembly>
15        <assemblyIdentity
16            type="win32"
17            name="Microsoft.Windows.Common-Controls"
18            version="6.0.0.0"
19            processorArchitecture="*"
20            publicKeyToken="6595b64144ccf1df"
21            language="*"
22        />
23    </dependentAssembly>
24</dependency>
25
26  <!-- Identify the application security requirements. -->
27  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
28    <security>
29      <requestedPrivileges>
30        <requestedExecutionLevel
31          level="asInvoker"
32          uiAccess="false"/>
33        </requestedPrivileges>
34       </security>
35  </trustInfo>
36
37  <!-- Indicate JDK is high-dpi aware. -->
38  <asmv3:application>
39    <asmv3:windowsSettings  xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
40       <dpiAware>true</dpiAware>
41    </asmv3:windowsSettings>
42  </asmv3:application>
43
44  <!-- Indicate this JDK version is Windows 7 compatible -->
45   <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
46      <application>
47        <!-- Windows Vista -->
48        <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
49        <!-- Windows 7 -->
50        <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
51        <!-- Windows 8 -->
52        <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
53        <!-- Windows 8.1 -->
54        <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
55        <!-- Windows 10 -->
56        <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
57      </application>
58    </compatibility>
59
60</assembly>
61