Changes between Initial Version and Version 4 of Ticket #1595


Ignore:
Timestamp:
06/03/12 09:52:12 (12 years ago)
Author:
trancexx
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1595

    • Property Status changed from new to assigned
    • Property Component changed from AutoIt to Aut2Exe
    • Property Summary changed from New AutoIt3Wrapper directive - supportedOS ID for manifest to SupportedOS ID for manifest
    • Property Keywords autoitwrapper removed
    • Property Owner set to Valik
  • Ticket #1595 – Description

    initial v4  
    88== Feature request ==
    99
    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.
     10Add option for Au2Exe to respectively include the Windows 7 or Windows Vista ID in this section of the manifest.
    2811
    2912For a related forum thread, including a discussion of a workaorund, see http://www.autoitscript.com/forum/index.php?showtopic=113657