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.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="requireAdministrator"
uiAccess="False"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
It would be complicated when there are other resources in program. Manifest file is recommended. Or, how about set administrator right in a install tools?I'm not going to go into the details of that, although I will attach a precompiled resource file of the manifest above which you can play with if you want (remove the .txt extension - and do not try and edit it, particularly in a simple text editor)
It seems that manifest is your first choice. I agree with you and I wan't to give a hint of “detail" you skipped. If no need other resource file, .res is the better way.>Manifest file is recommended
By whom? I'd wager that sal21 isn't currently using a resource file, so the complication you mention doesn't really exist. Using a separate manifest or an embedded manifest in a resource file would come down to personal preference.