如何以编程方式判断 Windows PE 文件是控制台子系统还是 Windows 子系统?

发布于 2024-12-09 13:38:30 字数 336 浏览 1 评论 0原文

基本上我需要一个程序,可以从控制台对应项中对 windows .exe 进行排序。

文件扫描器:

SortExe(file exe) 
{
 if (IsPeWindows(exe)) 
    {
      AddToList1(exe); 
    }
 else if (IsPeConsole())
    {
    AddToList2(exe); 
    }
 }

如何实现 IsPeWindows 或 IsPeConsole() ?

我并不特别介意使用什么语言解决方案,只要它是 C、C++、C# 或 Visual Basic 之一即可。

Basically I need a program that will sort windows .exe's from the console counterparts.

A file scanner:

SortExe(file exe) 
{
 if (IsPeWindows(exe)) 
    {
      AddToList1(exe); 
    }
 else if (IsPeConsole())
    {
    AddToList2(exe); 
    }
 }

How do I implement IsPeWindows or IsPeConsole() ?

I do not particularly mind what language solutions come in so long as it's one of c, c++, c# or visual basic.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╭⌒浅淡时光〆 2024-12-16 13:38:30

SHGFI_EXETYPE 传递给 SHGetFileInfo() &检查返回值的高/低字,如链接中所述。

Pass SHGFI_EXETYPE to SHGetFileInfo() & examine the hi/loword of the return value as explained in the link.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文