Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hello Mike :)
The official documentation is here: Application Manifest (Windows)
There are two main solutions. Firstly, using the manifest is fine, but will disable all Program Compatibility Assistant (PCA) Mitigation.
Alternatively, you could not be detected by PCA at all. Using the 32bit Compatibility Administrator from Microsoft Application Compatibility Toolkit, you are being picked up on two shims, 'Install' (*instal* in file name) and 'Setup' (*setup* in file description).
So, you could rename the application & change the file description. But then you completely lose all PCA as well, so you may as well have used the manifest.
So yeah, probably using mt.exe to set the manifest in some sort of hopefully automated post build script in 7-Zip is the way forward.
Richard
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!--The ID below indicates application support for Windows Vista -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
<!--The ID below indicates application support for Windows 7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
<!--The ID below indicates application support for Windows 8 -->
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
</application>
</compatibility>
</assembly>
Has Sysnative Forums helped you? Please consider donating to help us support the site!