Date: 02-16-2022
Return to Index
created by gbSnippets
'The example below shows a manifest that informs Windows that the program
'can be run with standard user privileges in Windows Vista and Windows 7:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="9.0.0.0"
processorArchitecture="x86"
name="VI.EXE"
type="win32"
/>
<description>SamLogic VI Editor</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
'gbs_01181
'Date: 04-08-2012
http://www.garybeene.com/sw/gbsnippets.htm