Advertisement
SKNGGaming

Untitled

Nov 18th, 2022
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  2. <assemblyIdentity
  3. type="win32"
  4. name="Contoso.ExampleApplication.ExampleBinary"
  5. version="1.2.3.4"
  6. processorArchitecture="x86"
  7. />
  8. <description>Contoso Example Application</description>
  9. <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
  10. <application>
  11. <!-- Windows 10 and Windows 11 -->
  12. <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
  13. <!-- Windows 8.1 -->
  14. <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
  15. <!-- Windows 8 -->
  16. <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
  17. <!-- Windows 7 -->
  18. <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
  19. <!-- Windows Vista -->
  20. <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
  21. </application>
  22. </compatibility>
  23. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
  24. <security>
  25. <requestedPrivileges>
  26. <!--
  27. UAC settings:
  28. - app should run at same integrity level as calling process
  29. - app does not need to manipulate windows belonging to
  30. higher-integrity-level processes
  31. -->
  32. <requestedExecutionLevel
  33. level="asInvoker"
  34. uiAccess="false"
  35. />
  36. </requestedPrivileges>
  37. </security>
  38. </trustInfo>
  39. </assembly>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement