/ Published in: XML
URL: http://victorhurdugaci.com/using-uac-with-c-part-2/
also here's the related Wiki article: http://en.wikipedia.org/wiki/UserAccountControl
it seems that assemblyIdentity is not required
Expand |
Embed | Plain Text
<?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="UACApp" type="win32"/> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> <security> <requestedPrivileges> <requestedExecutionLevel level="requireAdministrator"/> </requestedPrivileges> </security> </trustInfo> </assembly>
You need to login to post a comment.
