以编程方式阅读"详细信息"可执行文件的选项卡

时间:2015-04-07 18:33:57

标签: file

我希望读取.exe文件的详细信息选项卡中包含的值。至少是“描述”下的“标题”值。有人可以提供建议吗?

由于

2 个答案:

答案 0 :(得分:0)

你可能需要这个:http://en.wikipedia.org/wiki/Portable_Executable。 假设你想看看windows文件。

如果你想查看linux文件(不是.exe) - 你可能需要这个:http://en.wikipedia.org/wiki/Executable_and_Linkable_Format

答案 1 :(得分:0)

如果要从批处理文件访问此信息,请考虑使用SysInternals中的sigcheck,例如:

> sigcheck.exe accesschk.exe
    Verified:       Signed
    Signing date:   21:15 18-1-2015
    Publisher:      Microsoft Corporation
    Description:    Reports effective permissions for securable objects
    Product:        Sysinternals AccessChk
    Prod version:   5.21
    File version:   5.21
    MachineType:    32-bit

有关更多提示,请参阅thisthis回答。