Guest User

Untitled

a guest
May 9th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. How to Avoid User Account Control or Run windows application in Win7 always in Admin mode
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1"
  4. xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
  7. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
  8. <security>
  9. <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
  10. <!-- UAC Manifest Options
  11. If you want to change the Windows User Account Control level replace the
  12. requestedExecutionLevel node with one of the following.
  13.  
  14. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  15. <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
  16. <requestedExecutionLevel level="highestAvailable" uiAccess="false" />
  17.  
  18. If you want to utilize File and Registry Virtualization for backward
  19. compatibility then delete the requestedExecutionLevel node.
  20. -->
  21. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  22. </requestedPrivileges>
  23. </security>
  24. </trustInfo>
  25. </asmv1:assembly>
Advertisement
Add Comment
Please, Sign In to add comment