123456789101112131415161718192021 |
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <!-- 2015年08月27号 Jeff -->
- <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
- <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="YLGL.exe.manifest" type="win32" />
- <!-- 以管理员身份运行 -->
- <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
- <security>
- <requestedPrivileges>
- <!-- 设置level来改变运行权限 ="asInvoker" 普通权限 ="highestAvailable" 最高权限 -->
- <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
- </requestedPrivileges>
- </security>
- </trustInfo>
- <!-- 运行界面的XP风格样式 -->
- <description>YLGL Explorer</description>
- <dependency>
- <dependentAssembly>
- <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="x86" />
- </dependentAssembly>
- </dependency>
- </assembly>
|