Last active
June 8, 2020 16:49
-
-
Save CarlTBarnes/2abf8a7be95cd14da586c7b9c17173f4 to your computer and use it in GitHub Desktop.
Manifest Fixup Controls for Hand Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ManifestFixup PROCEDURE(BYTE SheetNoTheme=1, BYTE ColorAsWindow=0) | |
FEQ LONG,AUTO | |
CODE !Changes VistaManifest.TPW Template makes ... | |
FEQ=0 | |
LOOP | |
FEQ=0{PROP:NextField,FEQ} ; IF ~FEQ THEN BREAK. | |
CASE FEQ{PROP:Type} | |
OF Create:sheet | |
IF SheetNoTheme THEN FEQ{PROP:NoTheme}=1. !%ForceSHEETNoTheme | |
OF Create:OPTION OROF Create:GROUP OROF Create:RADIO | |
OROF Create:STRING OROF Create:CHECK OROF Create:PROMPT | |
IF ~FEQ{PROP:Parent} THEN CYCLE. | |
IF ColorAsWindow THEN !%ForceMakeColorXPManifest | |
FEQ{PROP:Trn}=0 | |
IF FEQ{PROP:Color}=COLOR:None THEN | |
FEQ{PROP:Color}=COLOR:Window | |
END | |
ELSE !%ForceMakeTransparentXPManifest | |
FEQ{PROP:Trn}=1 | |
END | |
END | |
END | |
RETURN | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
<assemblyIdentity | |
version="1.0.0.0" | |
processorArchitecture="x86" | |
name="CompanyName.ProductName.ApplicationName" | |
type="win32" | |
/> | |
<description>Application with Visual Styles for Windows 10</description> | |
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
<security> | |
<requestedPrivileges> | |
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> | |
</requestedPrivileges> | |
</security> | |
</trustInfo> | |
<dependency> | |
<dependentAssembly> | |
<assemblyIdentity | |
type="win32" | |
name="Microsoft.Windows.Common-Controls" | |
version="6.0.0.0" | |
processorArchitecture="x86" | |
publicKeyToken="6595b64144ccf1df" | |
language="*" | |
/> | |
</dependentAssembly> | |
</dependency> | |
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | |
<application> | |
<!--ID indicates application supports Windows Vista and Server 2008--> | |
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | |
<!--ID indicates application supports Windows 7 and Server 2008 R2--> | |
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | |
<!--ID indicates application supports Windows 8 and Server 2012--> | |
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | |
</application> | |
</compatibility> | |
<asmv3:application> | |
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | |
<dpiAware>true</dpiAware> | |
</asmv3:windowsSettings> | |
</asmv3:application> | |
</assembly> | |
<!-- Generated by CWA Manifest Maker 07/14/2019 at 5:03:55PM --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
<assemblyIdentity | |
version="1.0.0.0" | |
processorArchitecture="x86" | |
name="CompanyName.ProductName.ApplicationName" | |
type="win32" | |
/> | |
<description>Application with Visual Styles for Windows 7</description> | |
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
<security> | |
<requestedPrivileges> | |
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> | |
</requestedPrivileges> | |
</security> | |
</trustInfo> | |
<dependency> | |
<dependentAssembly> | |
<assemblyIdentity | |
type="win32" | |
name="Microsoft.Windows.Common-Controls" | |
version="6.0.0.0" | |
processorArchitecture="x86" | |
publicKeyToken="6595b64144ccf1df" | |
language="*" | |
/> | |
</dependentAssembly> | |
</dependency> | |
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | |
<application> | |
<!--ID indicates application supports Windows Vista and Server 2008--> | |
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | |
<!--ID indicates application supports Windows 7 and Server 2008 R2--> | |
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | |
</application> | |
</compatibility> | |
<asmv3:application> | |
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | |
<dpiAware>true</dpiAware> | |
</asmv3:windowsSettings> | |
</asmv3:application> | |
</assembly> | |
<!-- Generated by CWA Manifest Maker 06/08/2020 at 11:48:16AM --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
<assemblyIdentity | |
version="1.0.0.0" | |
processorArchitecture="x86" | |
name="CompanyName.ProductName.ApplicationName" | |
type="win32" | |
/> | |
<description>Application with Visual Styles for Windows 8.0</description> | |
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
<security> | |
<requestedPrivileges> | |
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> | |
</requestedPrivileges> | |
</security> | |
</trustInfo> | |
<dependency> | |
<dependentAssembly> | |
<assemblyIdentity | |
type="win32" | |
name="Microsoft.Windows.Common-Controls" | |
version="6.0.0.0" | |
processorArchitecture="x86" | |
publicKeyToken="6595b64144ccf1df" | |
language="*" | |
/> | |
</dependentAssembly> | |
</dependency> | |
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | |
<application> | |
<!--ID indicates application supports Windows Vista and Server 2008--> | |
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | |
<!--ID indicates application supports Windows 7 and Server 2008 R2--> | |
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | |
<!--ID indicates application supports Windows 8 and Server 2012--> | |
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | |
</application> | |
</compatibility> | |
<asmv3:application> | |
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | |
<dpiAware>true</dpiAware> | |
</asmv3:windowsSettings> | |
</asmv3:application> | |
</assembly> | |
<!-- Generated by CWA Manifest Maker 07/14/2019 at 5:03:55PM --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
<assemblyIdentity | |
version="1.0.0.0" | |
processorArchitecture="x86" | |
name="CompanyName.ProductName.ApplicationName" | |
type="win32" | |
/> | |
<description>Application with Visual Styles for Windows 8.1</description> | |
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
<security> | |
<requestedPrivileges> | |
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> | |
</requestedPrivileges> | |
</security> | |
</trustInfo> | |
<dependency> | |
<dependentAssembly> | |
<assemblyIdentity | |
type="win32" | |
name="Microsoft.Windows.Common-Controls" | |
version="6.0.0.0" | |
processorArchitecture="x86" | |
publicKeyToken="6595b64144ccf1df" | |
language="*" | |
/> | |
</dependentAssembly> | |
</dependency> | |
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | |
<application> | |
<!--ID indicates application supports Windows Vista and Server 2008--> | |
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | |
<!--ID indicates application supports Windows 7 and Server 2008 R2--> | |
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | |
<!--ID indicates application supports Windows 8 and Server 2012--> | |
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | |
<!--ID indicates application supports Windows 8-1 and Server 2012 R2--> | |
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> | |
</application> | |
</compatibility> | |
<asmv3:application> | |
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | |
<dpiAware>true</dpiAware> | |
</asmv3:windowsSettings> | |
</asmv3:application> | |
</assembly> | |
<!-- Generated by CWA Manifest Maker 06/08/2020 at 11:49:10AM --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment