10 | | Add a directive to the AutoIt3Wrapper that offers to respectively include the Windows 7 or Windows Vista ID in this section of the manifest. This would work similar to the {{{#AutoIt3Wrapper_Res_requestedExecutionLevel}}} directive, which already modifies the manifest embedded in the executable. |
11 | | |
12 | | {{{ |
13 | | #AutoIt3Wrapper_Res_supportedOSWin7 |
14 | | #AutoIt3Wrapper_Res_supportedOSWinVista |
15 | | }}} |
16 | | would add |
17 | | {{{ |
18 | | <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> |
19 | | <application> |
20 | | <!--The ID below indicates application support for Windows Vista --> |
21 | | <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> |
22 | | <!--The ID below indicates application support for Windows 7 --> |
23 | | <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> |
24 | | </application> |
25 | | </compatibility> |
26 | | }}} |
27 | | to the manifest, with the option to use only one of these dirctives. |
| 10 | Add option for Au2Exe to respectively include the Windows 7 or Windows Vista ID in this section of the manifest. |