我在很多.exe文件的末尾看過這段文字。它能告訴我什麼語言的.exe文件被寫入?我認爲它可能是一個.NET語言,因爲微軟的參考。這個文本在.exe文件的結尾是什麼意思?
<!-- Copyright (c) Microsoft Corporation -->
<!--
Copyright (c) Microsoft Corporation. All rights reserved.
Authors:
GaryY
Module name:
wextract.manifest
Abstract:
Manifest to support IExpress WExtract.exe.
-->
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="x86"
name="wextract"
type="win32"
/>
<description>IExpress extraction tool</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
<!-- Identify the application security requirements. -->
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
該文件的其餘部分只是無稽之談,除了這部分。我用Notepad ++打開了這個文件。