C++/Win32 进程详细信息获取, 进程/进程树操作

CProcessExUtils.h

#pragma once

#include <wtypesbase.h>
#include <tchar.h>
#include <vector>
#include <map>
#include <set>
#include <string>
#include <psapi.h>
#include <thread>

#pragma warning(disable: 4200)
#pragma warning(disable: 4201)

#ifdef _UNICODE
using _tstring = std::wstring;
#else
using _tstring = std::string;
#endif

namespace CProcessUtilsEx
{
    // https://learn.microsoft.com/zh-cn/windows/win32/api/verrsrc/ns-verrsrc-vs_fixedfileinfo
    // 版本号结构
    typedef union _VERSON_NUMBER {
        DWORD   Data;
        struct {
            WORD wLow;      // 版本号低16位
            WORD wHigh;     // 版本号高16位
        }Version;
        _VERSON_NUMBER(DWORD val = 0) : Data(val) {}
    }VERSON_NUMBER;

    typedef struct _VS_VER_FIXEDFILEINFO {

        DWORD dwSignature;                  // 0xFEEF04BD
        VERSON_NUMBER dwStrucVersion;       // 此结构的二进制版本号。 此成员的高序字包含主版本号,低序字包含次要版本号。
        VERSON_NUMBER dwFileVersionMS;      // 文件二进制版本号中最重要的 32 位。 此成员与 dwFileVersionLS 一起使用,形成用于数字比较的 64 位值。
        VERSON_NUMBER dwFileVersionLS;      // 文件二进制版本号中最低有效 32 位。 此成员与 dwFileVersionMS 一起使用,形成用于数字比较的 64 位值。
        VERSON_NUMBER dwProductVersionMS;   // 分发此文件的产品的二进制版本号中最重要的 32 位。 此成员与 dwProductVersionLS 一起使用,形成用于数字比较的 64 位值。
        VERSON_NUMBER dwProductVersionLS;   // 分发此文件的产品的二进制版本号中最低有效 32 位。 此成员与 dwProductVersionMS 一起使用,形成用于数字比较的 64 位值。

        DWORD dwFileFlagsMask;              // 包含指定 dwFileFlags 中的有效位的位掩码。 仅当在创建文件时定义位时,位才有效。

        struct {
            DWORD fVS_FF_DEBUG : 1;             // 该文件包含调试信息,或者在启用调试功能的情况下进行编译。
            DWORD fVS_FF_PRERELEASE : 1;        // 该文件是开发版本,而不是商业发布的产品。
            DWORD fVS_FF_PRIVATEBUILD : 1;      // 文件不是使用标准发布过程生成的。 如果设置了此标志, StringFileInfo 结构应包含 PrivateBuild 条目。
            DWORD fVS_FF_PATCHED : 1;           // 该文件已修改,与同一版本号的原始发货文件不同。
            DWORD fVS_FF_INFOINFERRED : 1;      // 文件的版本结构是动态创建的;因此,此结构中的某些成员可能为空或不正确。 切勿在文件的 VS_VERSIONINFO 数据中设置此标志。
            DWORD fVS_FF_SPECIALBUILD : 1;      // 该文件由原始公司使用标准发布过程生成,但是相同版本号的正常文件的变体。 如果设置了此标志, StringFileInfo 结构应包含 SpecialBuild 条目。
            DWORD fVS_FF_Reserved : 26;         // 保留未使用
        }dwFileFlags;   // 包含指定文件的布尔属性的位掩码。

        union _FILE_OS {
            DWORD dwData;
            struct {
                enum eFileOSLo : WORD {
                    eVOS_LO_UNKNOWN = 0x0000L,      // 系统不知道设计该文件的操作系统
                    eVOS_LO_WINDOWS16 = 0x0001L,    // 该文件是为 16 位 Windows 设计的
                    eVOS_LO_PM16 = 0x0002L,         // 该文件是为 16 位 Presentation Manager 设计的
                    eVOS_LO_PM32 = 0x0003L,         // 该文件是为 32 位 Presentation Manager 设计的
                    eVOS_LO_WINDOWS32 = 0x0004L,    // 该文件专为 32 位 Windows 设计
                }Low;

                enum eFileOSHi : WORD {
                    eVOS_HI_UNKNOWN = 0x0000L,  // 系统不知道设计该文件的操作系统
                    eVOS_HI_DOS = 0x0001L,      // 该文件是针对 MS-DOS 设计的
                    eVOS_HI_OS216 = 0x0002L,    // 该文件是为 16 位 OS/2 设计的
                    eVOS_HI_OS232 = 0x0003L,    // 该文件是为 32 位 OS/2 设计的
                    eVOS_HI_NT = 0x0004L,       // 该文件是为 Windows NT 设计的
                }High;
            };

        }dwFileOS;      // 为其设计此文件的操作系统

        enum eFileType : DWORD {
            eVFT_UNKNOWN = 0x00000000L,     // 系统不知道文件类型
            eVFT_APP = 0x00000001L,         // 该文件包含一个应用程序
            eVFT_DLL = 0x00000002L,         // 该文件包含一个 DLL
            eVFT_DRV = 0x00000003L,         // 该文件包含设备驱动程序
            eVFT_FONT = 0x00000004L,        // 该文件包含字体
            eVFT_VXD = 0x00000005L,         // 该文件包含一个虚拟设备
            eVFT_STATIC_LIB = 0x00000007L   // 该文件包含一个静态链接库
        }dwFileType;    // 文件的常规类型

        union {
            // 如果 dwFileTypeVFT_FONT, 则 dwFileSubtype 可以是以下值之一。
            enum eFileSubtypeDrv : DWORD {
                eVFT2_DRV_UNKNOWN = 0x00000000L,            //系统未知驱动程序类型。
                eVFT2_DRV_PRINTER = 0x00000001L,            //文件包含打印机驱动程序。
                eVFT2_DRV_KEYBOARD = 0x00000002L,           //文件包含键盘驱动程序。
                eVFT2_DRV_LANGUAGE = 0x00000003L,           //文件包含语言驱动程序。
                eVFT2_DRV_DISPLAY = 0x00000004L,            //文件包含显示驱动程序。
                eVFT2_DRV_MOUSE = 0x00000005L,              //文件包含鼠标驱动程序。
                eVFT2_DRV_NETWORK = 0x00000006L,            //文件包含网络驱动程序。
                eVFT2_DRV_SYSTEM = 0x00000007L,             //文件包含系统驱动程序。
                eVFT2_DRV_INSTALLABLE = 0x00000008L,        //文件包含可安装的驱动程序。
                eVFT2_DRV_SOUND = 0x00000009L,              //该文件包含声音驱动程序。
                eVFT2_DRV_COMM = 0x0000000AL,               //文件包含通信驱动程序。
                eVFT2_DRV_VERSIONED_PRINTER = 0x0000000CL,  //文件包含版本控制打印机驱动程序。
            }dwFileTypeVFT_DRV;     // 驱动文件类型

            // 如果 dwFileTypeVFT_VXD, 则 dwFileSubtype 包含虚拟设备控制块中包含的虚拟设备标识符。
            enum eFileSubtypeFont : DWORD {
                eVFT2_FONT_UNKNOWN = 0x00000000L,   //系统未知字体类型。
                eVFT2_FONT_RASTER = 0x00000001L,    //文件包含光栅字体。
                eVFT2_FONT_TRUETYPE = 0x00000003L,  //文件包含 TrueType 字体。
                eVFT2_FONT_VECTOR = 0x00000002L,    //文件包含矢量字体。
            }dwFileTypeVFT_FONT;    // 字体文件类型

        }dwFileSubtype;     // 文件的子类型

        DWORD dwFileDateMS; // 文件的 64 位二进制创建日期和时间戳中最高有效 32 位。
        DWORD dwFileDateLS; // 文件的 64 位二进制创建日期和时间戳的最低有效 32 位。

        _VS_VER_FIXEDFILEINFO()
        {
            memset(this, 0, sizeof(*this));
        }

    } VS_VER_FIXEDFILEINFO, * PVS_VER_FIXEDFILEINFO;

    // 语言与代码页
    typedef struct _LANGANDCODEPAGE {
        LANGID wLangId;
        WORD wCodePage; // https://learn.microsoft.com/zh-cn/windows/win32/menurc/varfileinfo-block

        _LANGANDCODEPAGE();
        bool operator < (const _LANGANDCODEPAGE& r) const;
        bool operator == (const _LANGANDCODEPAGE& r) const;

    }LANGANDCODEPAGE, * PLANGANDCODEPAGE;

    // PE文件头辅助类
    class CPEHeader
    {
    public:
        CPEHeader();
        CPEHeader(const CPEHeader& r) noexcept;
        CPEHeader(CPEHeader&& r) noexcept;
        CPEHeader& operator = (const CPEHeader& r) noexcept;
        CPEHeader& operator = (CPEHeader&& r) noexcept;
        ~CPEHeader();

        bool LoadFromFile(const _tstring& strFile);
        bool LoadFromModule(HMODULE hModule);
        void CopyFrom(const CPEHeader& r);
        void Release();

        WORD GetMachine();
        DWORD GetSubsystemType();
        bool IsX86();
        bool IsX64();
        bool IsARM32();
        bool IsARM64();
        bool IsWindowsGUI();
        bool IsWindowsCUI();

    public:
        PIMAGE_DOS_HEADER       m_pDosHeader;            // Dos头
        PIMAGE_NT_HEADERS64     m_pNtHeaders64;          // NT头(64位)
        PIMAGE_NT_HEADERS32     m_pNtHeaders32;          // NT头(32位)
        WORD                    m_NtHeadersMagic;        // NT头魔数
    };

    // 版本号辅助类
    class CVersionNumber
    {
    public:
        CVersionNumber();
        CVersionNumber(const _tstring& strVer);
        CVersionNumber(WORD v1, WORD v2, WORD v3, WORD v4);
        CVersionNumber& operator = (const _tstring& strVer);
        _tstring GetString() const;
        bool IsEmpty() const;
        void Clear();
        bool operator == (const CVersionNumber& ref);
        bool operator != (const CVersionNumber& ref);
        bool operator < (const CVersionNumber& ref);
        bool operator <= (const CVersionNumber& ref);
        bool operator > (const CVersionNumber& ref);
        bool operator >= (const CVersionNumber& ref);

    private:
        int _Compare(const CVersionNumber& ref) const;

    private:
        WORD m_nVer[4];         //版本号
    };

    // PE文件信息
    typedef struct _VERSION_INFO
    {
        _tstring strLocaleName;                     // 区域名
        _tstring strLangName;                       // 语言名
        _tstring strComments;                       // 文件注释
        _tstring strInternalName;                   // 内部名称
        _tstring strProductName;                    // 产品名称
        _tstring strCompanyName;                    // 公司名称
        _tstring strLegalCopyright;                 // 法律版权
        _tstring strProductVersion;                 // 产品版本
        _tstring strFileDescription;                // 文件描述
        _tstring strLegalTrademarks;                // 合法商标
        _tstring strPrivateBuild;                   // 私有构建
        _tstring strFileVersion;                    // 文件版本
        _tstring strOriginalFilename;               // 原始文件名
        _tstring strSpecialBuild;                   // 特殊构建
        _tstring strFileVersionEx;                  // 文件版本(从 VS_FIXEDFILEINFO 中获取)
        _tstring strProductVersionEx;               // 产品版本(从 VS_FIXEDFILEINFO 中获取)
        VS_VER_FIXEDFILEINFO vsFixedInfo;           // 固定文件信息
        CVersionNumber FileVerNumber;               // 文件版本号
        CVersionNumber ProductVerNumber;            // 产品版本号
        LANGANDCODEPAGE langAndCodePage;            // 语言代码页
        LANGID   wLangId;                           // 语言ID
    }VERSION_INFO;

    // 进程 SID 信息
    typedef struct _PROC_SID_INFO
    {
        DWORD ProcessId;
        DWORD SessionId;
        _tstring ProcessName;
        _tstring DomainName;
        _tstring UserName;

        _PROC_SID_INFO() :SessionId(0), ProcessId(0) {}

    } PROC_SID_INFO, * PPROC_NAME_INFO;

    // 进程组信息
    typedef struct _TOKEN_GROUPS_INFO
    {
        _tstring    SID;
        _tstring    DomainName;
        _tstring    UserName;
        DWORD       Attributes;

        _TOKEN_GROUPS_INFO() : Attributes(0) {}

    } TOKEN_GROUPS_INFO, * PTOKEN_GROUPS_INFO;

    // 模块信息
    typedef struct _MODULE_INFO
    {
        _tstring    strModule;              // 模块名
        _tstring    strExePath;             // 模块路径
        DWORD       th32ProcessID;          // 要检查其模块的进程标识符
        DWORD       GlblcntUsage;           // 模块的负载计数,通常没有意义,通常等于0xFFFF
        LPVOID      modBaseAddr;            // 拥有进程上下文中模块的基址
        DWORD       modBaseSize;            // 模块的大小(以字节为单位)
        HMODULE     hModule;                // 拥有进程上下文中模块的句柄

        _MODULE_INFO();

    }MODULE_INFO;

    // 窗口信息
    typedef struct _WND_INFO
    {
        HWND hWnd;
        DWORD dwPid;
        DWORD dwTid;
        _tstring strClass;
        _tstring strText;

    }WND_INFO;

    // 窗口节点信息
    typedef struct _WND_NODE
    {
        HWND hWnd;                          // 窗口句柄
        DWORD dwPid;                        // 窗口进程ID
        DWORD dwTid;                        // 窗口线程ID
        _tstring strClass;                  // 窗口类名
        _tstring strText;                   // 窗口名
        _tstring strModule;                 // 窗口关联的模块名
        std::vector<_WND_NODE> NodeList;    // 子窗口列表
    }WND_NODE;

    // 语言信息
    typedef struct _LANG_INFO
    {
        LANGID   wLangId;                   // 语言ID
        _tstring strLocaleName;             // 区域名
        _tstring strLangName;               // 语言名

    }LANG_INFO;

    using VERSION_INFO_LIST = std::map<DWORD, VERSION_INFO>;
    using PROC_TOKEN_GROUPS = std::vector<TOKEN_GROUPS_INFO>;

    using PROC_NAME_LIST = std::map<DWORD, _tstring>;

    using PROC_SID_LIST = std::map<DWORD, PROC_SID_INFO>;

    using MODULE_INFO_LIST = std::map<_tstring, MODULE_INFO>;

    using WND_INFO_LIST = std::map<HWND, WND_INFO>;

    using WND_NODE_LIST = std::map<HWND, WND_NODE>;

    using LANG_LIST = std::map<LANGID, LANG_INFO>;

    typedef struct _SYS_PROCESS_INFO
    {
        _tstring    ImageName;                      // 进程的映像名称
        _tstring    FilePath;                       // 文件路径

        DOUBLE      CpuUsage;                       // CPU 使用率
        ULONG       NumberOfThreads;                // 线程数
        uint64_t    WorkingSetPrivateSize;          // 进程的私有工作集的大小 since VISTA
        ULONG       HardFaultCount;                 // 硬错误计数 since WIN7
        ULONG       NumberOfThreadsHighWatermark;   // 进程中线程数量的最高记录值 since WIN7
        uint64_t    CycleTime;                      // 周期时间 since WIN7
        uint64_t    CreateTime;                     // 创建时间
        uint64_t    UserTime;                       // 用户时间
        uint64_t    KernelTime;                     // 内核时间
        uint32_t    BasePriority;                   // 进程的基优先级,即在关联进程中创建的线程的起始优先级
        uint64_t    UniqueProcessId;                // 进程的唯一进程 ID
        uint64_t    UniqueParentProcessId;          // 父进程ID
        uint32_t    HandleCount;                    // 进程正在使用的句柄总数, 改用 GetProcessHandleCount 检索此信息
        uint32_t    SessionId;                      // 会话标识符
        uint64_t    UniqueProcessKey;               // since VISTA (requires SystemExtendedProcessInformation)
        size_t      PeakVirtualSize;                // 虚拟内存的峰值大小(字节)
        size_t      VirtualSize;                    // 虚拟内存的当前大小(字节)
        size_t      PageFaultCount;                 // 页错误计数
        size_t      PeakWorkingSetSize;             // 进程的工作集的峰值大小(KB)
        size_t      WorkingSetSize;                 // 进程的工作集大小(KB)
        size_t      QuotaPeakPagedPoolUsage;        // 分页池使用峰值用量
        size_t      QuotaPagedPoolUsage;            // 分页池使用当前用量
        size_t      QuotaPeakNonPagedPoolUsage;     // 非分页池使用峰值用量
        size_t      QuotaNonPagedPoolUsage;         // 非分页池使用当前用量
        size_t      PagefileUsage;                  // 页面文件存储的字节数
        size_t      PeakPagefileUsage;              // 页面文件存储的最大字节数
        size_t      PrivatePageCount;               // 进程分配的内存页数
        uint64_t    ReadOperationCount;             // 读操作计数
        uint64_t    WriteOperationCount;            // 写操作计数
        uint64_t    OtherOperationCount;            // 其他操作计数
        uint64_t    ReadTransferCount;              // 读取传输量计数
        uint64_t    WriteTransferCount;             // 写入传输量计数
        uint64_t    OtherTransferCount;             // 其他传输量计数

        DWORD       GdiCount;                       // GDI对象计数
        DWORD       UserCount;                      // 用户对象计数
        DWORD       ThreadCount;                    // 线程计数
        DWORD       SuspendThreadCount;             // 挂起线程计数

        CPEHeader           PeHeader;               // PE头信息辅助类
        PROC_SID_INFO       SidInfo;                // SID 信息
        VERSION_INFO_LIST   Versions;               // 文件版本信息
        PROC_TOKEN_GROUPS   Groups;                 // 组信息
        MODULE_INFO_LIST    Modules;                // 模块信息
        VERSION_INFO        FileVersion;            // 版本信息

        _SYS_PROCESS_INFO()
            :
            CpuUsage(0.0f),
            NumberOfThreads(0),
            WorkingSetPrivateSize(0),
            HardFaultCount(0),
            NumberOfThreadsHighWatermark(0),
            CycleTime(0),
            CreateTime(0),
            UserTime(0),
            KernelTime(0),
            BasePriority(0),
            UniqueProcessId(0),
            UniqueParentProcessId(0),
            HandleCount(0),
            SessionId(0),
            UniqueProcessKey(0),
            PeakVirtualSize(0),
            VirtualSize(0),
            PageFaultCount(0),
            PeakWorkingSetSize(0),
            WorkingSetSize(0),
            QuotaPeakPagedPoolUsage(0),
            QuotaPagedPoolUsage(0),
            QuotaPeakNonPagedPoolUsage(0),
            QuotaNonPagedPoolUsage(0),
            PagefileUsage(0),
            PeakPagefileUsage(0),
            PrivatePageCount(0),
            ReadOperationCount(0),
            WriteOperationCount(0),
            OtherOperationCount(0),
            ReadTransferCount(0),
            WriteTransferCount(0),
            OtherTransferCount(0),
            GdiCount(0),
            UserCount(0),
            ThreadCount(0),
            SuspendThreadCount(0)
        {

        }

    } PROCESS_INFO, * PSYS_PROCESS_INFO;

    // 进程节点信息
    typedef struct _PROC_NODE
    {
        PROCESS_INFO   ProcInfo;                // 进程信息
        std::map<DWORD, _PROC_NODE> NodeList;   // 子进程列表
    }PROC_NODE;

    // 进程列表
    using PROCESS_INFO_LIST = std::map<DWORD, PROCESS_INFO>;

    // 路径集
    using PROC_PATH_SET = std::set<_tstring>;

    // 进程结点
    using PROC_NODE_LIST = std::map<DWORD, PROC_NODE>;

    //
    // 进程提权
    // @param: hProcess             进程句柄
    // @param: lpPrivilegesName     特权名
    // @ret: bool                   操作是否成功
    bool EnablePrivileges(HANDLE hProcess, LPCTSTR lpPrivilegesName = SE_DEBUG_NAME);

    //
    // @brief: 创建进程
    // @param: strExePath           可执行文件路径
    // @param: strCommand           命令参数
    // @param: strCurDir            程序的当前目录
    // @param: bShow                是否显示程序
    // @param: bWait                是否等待程序直到其退出
    // @ret: bool                   操作是否成功
    bool CreateProcessNormal(
        const _tstring& strExePath = _T(""),
        const _tstring& strCommand = _T(""),
        const _tstring& strCurDir = _T(""),
        bool bShow = true,
        bool bWait = true
    );

    //
    // @brief: 创建 带有UI 权限的进程
    // @param: strExePath           可执行文件路径
    // @param: strCommand           命令参数
    // @param: strCurDir            程序的当前目录
    bool CreateProcessWithUIAccess(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir = _T(""),
        bool bShow = true,
        bool bWait = true
    );

    //
    // @brief: 创建不带UI权限的进程
    // @param: strExePath           可执行文件路径
    // @param: strCommand           命令参数
    // @param: strCurDir            程序的当前目录
    bool CreateProcessNoUIAccess(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir = _T(""),
        bool bShow = false,
        bool bWait = false
    );

    //
    // @brief: 创建 SYSTEM 权限的进程
    // @param: strExePath           可执行文件路径
    // @param: strCommand           命令参数
    // @param: strCurDir            程序的当前目录
    bool CreateProcessWithSystem(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir = _T(""),
        bool bShow = true,
        bool bWait = true
    );

    //
    // 使用指定进程的令牌创建进程
    // @param: pid                  进程ID
    // @param: strExePath           可执行文件路径
    // @param: strCommand           命令参数
    // @param: strCurDir            程序的当前目录
    // @ret: bool                   是否操作成功
    bool CreateProcessWithPidToken(
        DWORD pid,
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir,
        bool bShow = true,
        bool bWait = true
    );

    //
    // @brief: 检查指定进程是否有UI权限
    // @param: dwPid                进程ID
    // @param: pdwErr               输出错误码
    // @param: pfUIAccess           输出权限
    // @param: 操作是否成功
    BOOL CheckProcessUIAccess(
        DWORD dwPid,
        DWORD* pdwErr,
        DWORD* pfUIAccess
    );

    //
    // @brief: 获取进程可执行文件路径
    // @param: dwPID                进程ID
    // @param: bNtPath              是否为Win32 样式的 NT 路径
    // @ret: _tstring               进程可执行文件路径
    _tstring GetPath(DWORD dwPID, bool bNtPath = true);

    //
    // @brief: 获取父进程可执行文件路径
    // @param: dwPID                进程ID
    // @param: bNtPath              是否为Win32 样式的 NT 路径
    // @ret: _tstring               进程可执行文件路径
    _tstring GetParentPath(DWORD dwPID, bool bNtPath = true);

    //
    // @brief: 获取父进程进程ID
    // @param: dwPID                进程ID
    // @ret: DWORD                  父进程进程ID
    DWORD GetParentProcessID(DWORD dwProcessId);

    //
    // @brief: 获取进程名列表
    // @ret: PROC_NAME_LIST         进程名列表
    PROC_SID_LIST GetProcessAccountSidList();

    //
    // @brief: 获取指定进程的模块信息(注意: 32位进程不能获取64位进程的模块信息)
    // @param: dwPID                进程ID
    // @ret: MODULE_INFO_LIST       模块信息
    MODULE_INFO_LIST GetModuleList(DWORD dwPID);
    MODULE_INFO_LIST GetModuleListEx(DWORD dwPID);

    //
    // @brief: 从进程列表获取指定进程的进程节点
    // @param: procList             进程列表
    // @param: dwPID                进程ID
    // @ret: PROC_NODE  进程信息
    PROC_NODE GetProcessNode(const PROCESS_INFO_LIST& procList, DWORD dwPID);

    //
    // @brief: 获取指定进程的进程节点
    // @ret: PROC_NODE              进程节点
    PROC_NODE GetProcessNode(DWORD dwPID);

    //
    // @brief: 获取指定进程路径是否存在于指定进程节点内
    // @param: strPath              进程路径
    // @param: dwPID                进程ID
    // @ret: bool                   是否存在于指定进程节点内
    bool IsPathInProcessNode(const _tstring& strPath, DWORD dwPID);

    //
    // @brief: 获取父进程的进程ID
    // @param: dwPID                进程ID
    // @ret: DWORD                  父进程的进程ID
    DWORD GetParentProcessID(DWORD dwPID);

    //
    // @brief: 等待进程结束
    // @param: dwPID                进程ID
    // @param: dwMilliseconds       超时时间
    // @ret: bool                   操作是否成功
    bool WaitForProcess(DWORD dwPID, DWORD dwMilliseconds = INFINITE);

    //
    // @brief: 杀死指定进程
    // @param: strName              进程名
    // @ret: bool                   操作是否成功
    bool KillProcess(const _tstring& strName = _T(""));

    //
    // @brief: 杀死指定进程
    // @param: dwPID                进程ID
    // @ret: bool                   操作是否成功
    bool KillProcess(DWORD dwPID);

    //
    // @brief: 杀死指定进程ID的进程节点
    // @param: dwPID                进程ID
    // @ret: bool                   操作是否成功
    bool KillProcessNode(DWORD dwPID);

    //
    // @brief: DOS路径转Nt路径
    // @param: strPath              路径
    // @ret: _tstring               Win32 样式的 NT 路径
    _tstring DosPathToNtPath(const _tstring& strPath);

    //
    // @brief: Nt路径转DOS路径
    // @param: strPath              路径
    // @ret: _tstring               DOS路径
    _tstring NtPathToDosPath(const _tstring& strPath);

    //
    // @brief: 进程是否挂起
    // @param: dwPID                进程ID
    // @ret: bool                   是否挂起
    bool IsSuspendProcess(DWORD dwPID);

    //
    // @brief: 获取进程挂起线程计数
    // @param: dwPID                进程ID
    // @ret: DWORD                  挂起线程计数
    DWORD GetSuspendThreadCount(DWORD dwPID);

    //
    // @brief: 挂起进程
    // @param: dwPID                进程ID
    // @ret: bool                   检查结果
    bool SuspendProcess(DWORD dwPID);

    //
    // @brief: 挂起进程节点
    // @param: dwPID                进程ID
    // @ret: bool                   检查结果
    bool SuspendProcessNode(DWORD dwPID);

    //
    // @brief: 恢复进程
    // @param: dwPID                进程ID
    // @ret: bool                   检查结果
    bool ResumeProcess(DWORD dwPID);

    //
    // @brief: 恢复进程节点
    // @param: dwPID                进程ID
    // @ret: bool                   检查结果
    bool ResumeProcessNode(DWORD dwPID);

    //
    // @brief: 指定进程是否为 64 位处理器上运行的 32 位应用程序
    // @param: dwPID                进程ID
    // @param: dwMilliseconds       超时时间
    // @ret: bool                   进程是否为 64 位处理器上运行的 32 位应用程序
    bool IsWow64Process(DWORD dwPID);

    // @brief: 指定进程是否 32 位应用程序
    // @param: dwPID                进程ID
    // @param: dwMilliseconds       超时时间
    // @ret: bool                   进程是否 32 位应用程序
    bool IsProcessX86(DWORD dwPID);

    //
    // @brief: 指定进程是否 64 位应用程序
    // @param: dwPID                进程ID
    // @param: dwMilliseconds       超时时间
    // @ret: bool                   进程是否 64 位应用程序
    bool IsProcessX64(DWORD dwPID);

    //
    //
    // @brief: 获取进程组信息
    // @param: dwPID                进程ID
    // @ret: PROCESS_GROUPS_LIST    进程组信息
    PROC_TOKEN_GROUPS GetProcessTokenGroups(DWORD dwPID);

    //
    // @brief: 获取进程中句柄计数
    // @param: dwPID                进程ID
    // @ret: DWORD                  句柄计数
    DWORD GetProcessHandleCount(DWORD dwPID);

    //
    // @brief: 获取进程窗口列表
    // @param: dwPID                进程ID
    // @ret: WND_INFO_LIST          窗口列表
    WND_INFO_LIST GetProcessWindows(DWORD dwPid);

    //
    // @brief: 获取进程窗口节点列表
    // @param: dwPID                进程ID
    // @ret: WND_NODE_LIST          窗口节点列表
    WND_NODE_LIST GetProcessWindowNodes(DWORD dwPid);

    //
    // 获取语言信息
    // @param: dwLang               语言ID
    // @ret: LANG_INFO              语言信息
    LANG_INFO GetLanguageInfo(LANGID dwLang);

    //
    // 获取系统安装的语言列表
    // @ret: LANG_LIST              语言列表
    LANG_LIST GetLangList();

    //
    // 获取资源信息版本信息
    // @param: hModule              模块句柄
    // @ret: langList               语言列表
    // @ret: VER_LANG_ID_LIST       资源信息版本列表
    VERSION_INFO_LIST GetResourceVersion(HMODULE hModule, const LANG_LIST& langList);

    //
    // @brief: 获取进程信息列表
    // @param: strName              进程名
    // @param: dwPID                进程ID
    // @param: fModule              获取模块(耗时高)
    // @param: fMultilingual        多语言资源信息
    // @param: onlyPathSet          指定获取路径集
    // @ret: PROCESS_INFO_LIST      进程信息列表
    PROCESS_INFO_LIST GetProcessList1(
        const _tstring& strName = _T(""),
        DWORD dwPID = 0,
        bool fModule = false,
        bool fMultilingual = false,
        const PROC_PATH_SET& onlyPathSet = {}
    );

    //
    // @brief: 获取进程信息列表
    // @param: strName              进程名
    // @param: dwPID                进程ID
    // @param: fModule              获取模块(耗时高)
    // @param: fMultilingual        多语言资源信息
    // @param: onlyPathSet          指定获取路径集
    // @ret: PROCESS_INFO_LIST      进程信息列表
    PROCESS_INFO_LIST GetProcessList2(
        const _tstring& strName = _T(""),
        DWORD dwPID = 0,
        bool fModule = false,
        bool fMultilingual = false,
        const PROC_PATH_SET& onlyPathSet = {}
    );

    //
    // @brief: 获取当前 CPU 使用率
    // @ret: double                 CPU 使用率
    double GetCpuUsage();

    //
    // @brief: 获取进程信息列表
    // @param: strName              进程名
    // @param: dwPID                进程ID
    // @param: fModule              获取模块(耗时高)
    // @param: fMultilingual        多语言资源信息
    // @param: onlyPathSet          指定获取路径集
    // @ret: PROCESS_INFO_LIST      进程信息列表
    PROCESS_INFO_LIST GetProcessList(
        const _tstring& strName = _T(""), 
        DWORD dwPID = 0,
        bool fModule = false,
        bool fMultilingual = false,
        bool fSid = false,
        const PROC_PATH_SET& onlyPathSet = {}
    );

    //
    // @brief: 获取进程信息
    // @param: dwPID                进程ID
    // @param: fModule              获取模块(耗时高)
    // @param: fMultilingual        多语言资源信息
    // @ret: SYS_PROCESS_INFO       进程信息
    PROCESS_INFO GetProcessInfo(
        DWORD dwPID,
        bool fModule = false,
        bool fMultilingual = false
        );

    //
    // @brief: 获取进程节点
    // @ret: procList        进程列表
    PROC_NODE_LIST GetProcessNodes(const PROCESS_INFO_LIST& procList);

    //
    // @brief: 获取所有进程节点
    // @param: fModule              获取模块(耗时高)
    // @param: fMultilingual        多语言资源信息
    // @ret: PROC_NODE_LIST  进程节点信息
    PROC_NODE_LIST GetProcessNodes(
        bool fModule = false,
        bool fMultilingual = false
    );

    //
    // @brief: 获取所有进程名列表
    // @ret: PROC_NODE_LIST  进程名列表
    PROC_NAME_LIST GetProcessNames();

    //
    // @brief: 获取进程路径
    // @ret: _tstring  进程路径
    _tstring GetProcessPath(DWORD dwPID);

    //
    // @brief: 获取进程所在目录
    // @ret: _tstring  进程所在目录
    _tstring GetProcessDir(DWORD dwPID);

    //
    // @brief: 获取进程名
    // @ret: _tstring  进程名
    _tstring GetProcessName(DWORD dwPID);
}

CProcessExUtils.cpp

#include "CProcessUtilsEx.h"
#include <tlhelp32.h>
#include <strsafe.h>
#include <stdint.h>
#include <WtsApi32.h>
#include <sddl.h>
#include <mutex>

#define NT_SUCCESS(Status)                  (((NTSTATUS)(Status)) >= 0)
#define STATUS_SUCCESS                      ((NTSTATUS)0x00000000L)
#define STATUS_INFO_LENGTH_MISMATCH         ((NTSTATUS)0xC0000004L)

#define DPSAPI_VERSION = 1
#pragma comment(lib, "Psapi.lib")
#pragma comment(lib, "Wtsapi32.lib" )
#pragma comment(lib, "Advapi32.lib" )
#pragma comment(lib, "Version.lib")

namespace CProcessUtilsEx
{
    // 进程 CPU 使用率采集器
    class CProcessUsageCollector
    {
    public:

        static CProcessUsageCollector& GetInst()
        {
            return m_inst;
        }

        // 获取当前 CPU 使用率
        double GetCpuUsage() const
        {
            return m_cpuUsage;
        }

        // 获取指定进程 CPU 使用率
        double GetProcessUsage(DWORD dwPID);

    private:
        CProcessUsageCollector();
        ~CProcessUsageCollector();

    private:

        std::map<uint64_t, double>          m_procUsageList;
        std::thread                         m_task;
        std::mutex                          m_mutex;
        double                              m_cpuUsage;
        HANDLE                              m_hEevent;

        static CProcessUsageCollector       m_inst;
    };

    std::map<_tstring, TOKEN_GROUPS_INFO>   g_tokenGroupChche;
    std::map<_tstring, PROC_SID_INFO>       g_accountSidChche;
    std::map<_tstring, VERSION_INFO_LIST>   g_versionCache;
    CProcessUsageCollector CProcessUsageCollector::m_inst;

    typedef _Return_type_success_(return >= 0) LONG NTSTATUS;

    typedef enum _SYSTEM_INFORMATION_CLASS
    {
        SystemBasicInformation, // q: SYSTEM_BASIC_INFORMATION
        SystemProcessorInformation, // q: SYSTEM_PROCESSOR_INFORMATION
        SystemPerformanceInformation, // q: SYSTEM_PERFORMANCE_INFORMATION
        SystemTimeOfDayInformation, // q: SYSTEM_TIMEOFDAY_INFORMATION
        SystemPathInformation, // not implemented
        SystemProcessInformation, // q: SYSTEM_PROCESS_INFORMATION
        SystemCallCountInformation, // q: SYSTEM_CALL_COUNT_INFORMATION
        SystemDeviceInformation, // q: SYSTEM_DEVICE_INFORMATION
        SystemProcessorPerformanceInformation, // q: SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION (EX in: USHORT ProcessorGroup)
        SystemFlagsInformation, // q: SYSTEM_FLAGS_INFORMATION
        SystemCallTimeInformation, // not implemented // SYSTEM_CALL_TIME_INFORMATION // 10
        SystemModuleInformation, // q: RTL_PROCESS_MODULES
        SystemLocksInformation, // q: RTL_PROCESS_LOCKS
        SystemStackTraceInformation, // q: RTL_PROCESS_BACKTRACES
        SystemPagedPoolInformation, // not implemented
        SystemNonPagedPoolInformation, // not implemented
        SystemHandleInformation, // q: SYSTEM_HANDLE_INFORMATION
        SystemObjectInformation, // q: SYSTEM_OBJECTTYPE_INFORMATION mixed with SYSTEM_OBJECT_INFORMATION
        SystemPageFileInformation, // q: SYSTEM_PAGEFILE_INFORMATION
        SystemVdmInstemulInformation, // q: SYSTEM_VDM_INSTEMUL_INFO
        SystemVdmBopInformation, // not implemented // 20
        SystemFileCacheInformation, // q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (info for WorkingSetTypeSystemCache)
        SystemPoolTagInformation, // q: SYSTEM_POOLTAG_INFORMATION
        SystemInterruptInformation, // q: SYSTEM_INTERRUPT_INFORMATION (EX in: USHORT ProcessorGroup)
        SystemDpcBehaviorInformation, // q: SYSTEM_DPC_BEHAVIOR_INFORMATION; s: SYSTEM_DPC_BEHAVIOR_INFORMATION (requires SeLoadDriverPrivilege)
        SystemFullMemoryInformation, // not implemented // SYSTEM_MEMORY_USAGE_INFORMATION
        SystemLoadGdiDriverInformation, // s (kernel-mode only)
        SystemUnloadGdiDriverInformation, // s (kernel-mode only)
        SystemTimeAdjustmentInformation, // q: SYSTEM_QUERY_TIME_ADJUST_INFORMATION; s: SYSTEM_SET_TIME_ADJUST_INFORMATION (requires SeSystemtimePrivilege)
        SystemSummaryMemoryInformation, // not implemented // SYSTEM_MEMORY_USAGE_INFORMATION
        SystemMirrorMemoryInformation, // s (requires license value "Kernel-MemoryMirroringSupported") (requires SeShutdownPrivilege) // 30
        SystemPerformanceTraceInformation, // q; s: (type depends on EVENT_TRACE_INFORMATION_CLASS)
        SystemObsolete0, // not implemented
        SystemExceptionInformation, // q: SYSTEM_EXCEPTION_INFORMATION
        SystemCrashDumpStateInformation, // s: SYSTEM_CRASH_DUMP_STATE_INFORMATION (requires SeDebugPrivilege)
        SystemKernelDebuggerInformation, // q: SYSTEM_KERNEL_DEBUGGER_INFORMATION
        SystemContextSwitchInformation, // q: SYSTEM_CONTEXT_SWITCH_INFORMATION
        SystemRegistryQuotaInformation, // q: SYSTEM_REGISTRY_QUOTA_INFORMATION; s (requires SeIncreaseQuotaPrivilege)
        SystemExtendServiceTableInformation, // s (requires SeLoadDriverPrivilege) // loads win32k only
        SystemPrioritySeparation, // s (requires SeTcbPrivilege)
        SystemVerifierAddDriverInformation, // s: UNICODE_STRING (requires SeDebugPrivilege) // 40
        SystemVerifierRemoveDriverInformation, // s: UNICODE_STRING (requires SeDebugPrivilege)
        SystemProcessorIdleInformation, // q: SYSTEM_PROCESSOR_IDLE_INFORMATION (EX in: USHORT ProcessorGroup)
        SystemLegacyDriverInformation, // q: SYSTEM_LEGACY_DRIVER_INFORMATION
        SystemCurrentTimeZoneInformation, // q; s: RTL_TIME_ZONE_INFORMATION
        SystemLookasideInformation, // q: SYSTEM_LOOKASIDE_INFORMATION
        SystemTimeSlipNotification, // s: HANDLE (NtCreateEvent) (requires SeSystemtimePrivilege)
        SystemSessionCreate, // not implemented
        SystemSessionDetach, // not implemented
        SystemSessionInformation, // not implemented (SYSTEM_SESSION_INFORMATION)
        SystemRangeStartInformation, // q: SYSTEM_RANGE_START_INFORMATION // 50
        SystemVerifierInformation, // q: SYSTEM_VERIFIER_INFORMATION; s (requires SeDebugPrivilege)
        SystemVerifierThunkExtend, // s (kernel-mode only)
        SystemSessionProcessInformation, // q: SYSTEM_SESSION_PROCESS_INFORMATION
        SystemLoadGdiDriverInSystemSpace, // s: SYSTEM_GDI_DRIVER_INFORMATION (kernel-mode only) (same as SystemLoadGdiDriverInformation)
        SystemNumaProcessorMap, // q: SYSTEM_NUMA_INFORMATION
        SystemPrefetcherInformation, // q; s: PREFETCHER_INFORMATION // PfSnQueryPrefetcherInformation
        SystemExtendedProcessInformation, // q: SYSTEM_PROCESS_INFORMATION
        SystemRecommendedSharedDataAlignment, // q: ULONG // KeGetRecommendedSharedDataAlignment
        SystemComPlusPackage, // q; s: ULONG
        SystemNumaAvailableMemory, // q: SYSTEM_NUMA_INFORMATION // 60
        SystemProcessorPowerInformation, // q: SYSTEM_PROCESSOR_POWER_INFORMATION (EX in: USHORT ProcessorGroup)
        SystemEmulationBasicInformation, // q: SYSTEM_BASIC_INFORMATION
        SystemEmulationProcessorInformation, // q: SYSTEM_PROCESSOR_INFORMATION
        SystemExtendedHandleInformation, // q: SYSTEM_HANDLE_INFORMATION_EX
        SystemLostDelayedWriteInformation, // q: ULONG
        SystemBigPoolInformation, // q: SYSTEM_BIGPOOL_INFORMATION
        SystemSessionPoolTagInformation, // q: SYSTEM_SESSION_POOLTAG_INFORMATION
        SystemSessionMappedViewInformation, // q: SYSTEM_SESSION_MAPPED_VIEW_INFORMATION
        SystemHotpatchInformation, // q; s: SYSTEM_HOTPATCH_CODE_INFORMATION
        SystemObjectSecurityMode, // q: ULONG // 70
        SystemWatchdogTimerHandler, // s: SYSTEM_WATCHDOG_HANDLER_INFORMATION // (kernel-mode only)
        SystemWatchdogTimerInformation, // q: SYSTEM_WATCHDOG_TIMER_INFORMATION // NtQuerySystemInformationEx // (kernel-mode only)
        SystemLogicalProcessorInformation, // q: SYSTEM_LOGICAL_PROCESSOR_INFORMATION (EX in: USHORT ProcessorGroup) // NtQuerySystemInformationEx
        SystemWow64SharedInformationObsolete, // not implemented
        SystemRegisterFirmwareTableInformationHandler, // s: SYSTEM_FIRMWARE_TABLE_HANDLER // (kernel-mode only)
        SystemFirmwareTableInformation, // SYSTEM_FIRMWARE_TABLE_INFORMATION
        SystemModuleInformationEx, // q: RTL_PROCESS_MODULE_INFORMATION_EX // since VISTA
        SystemVerifierTriageInformation, // not implemented
        SystemSuperfetchInformation, // q; s: SUPERFETCH_INFORMATION // PfQuerySuperfetchInformation
        SystemMemoryListInformation, // q: SYSTEM_MEMORY_LIST_INFORMATION; s: SYSTEM_MEMORY_LIST_COMMAND (requires SeProfileSingleProcessPrivilege) // 80
        SystemFileCacheInformationEx, // q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (same as SystemFileCacheInformation)
        SystemThreadPriorityClientIdInformation, // s: SYSTEM_THREAD_CID_PRIORITY_INFORMATION (requires SeIncreaseBasePriorityPrivilege) // NtQuerySystemInformationEx
        SystemProcessorIdleCycleTimeInformation, // q: SYSTEM_PROCESSOR_IDLE_CYCLE_TIME_INFORMATION[] (EX in: USHORT ProcessorGroup) // NtQuerySystemInformationEx
        SystemVerifierCancellationInformation, // SYSTEM_VERIFIER_CANCELLATION_INFORMATION // name:wow64:whNT32QuerySystemVerifierCancellationInformation
        SystemProcessorPowerInformationEx, // not implemented
        SystemRefTraceInformation, // q; s: SYSTEM_REF_TRACE_INFORMATION // ObQueryRefTraceInformation
        SystemSpecialPoolInformation, // q; s: SYSTEM_SPECIAL_POOL_INFORMATION (requires SeDebugPrivilege) // MmSpecialPoolTag, then MmSpecialPoolCatchOverruns != 0
        SystemProcessIdInformation, // q: SYSTEM_PROCESS_ID_INFORMATION
        SystemErrorPortInformation, // s (requires SeTcbPrivilege)
        SystemBootEnvironmentInformation, // q: SYSTEM_BOOT_ENVIRONMENT_INFORMATION // 90
        SystemHypervisorInformation, // q: SYSTEM_HYPERVISOR_QUERY_INFORMATION
        SystemVerifierInformationEx, // q; s: SYSTEM_VERIFIER_INFORMATION_EX
        SystemTimeZoneInformation, // q; s: RTL_TIME_ZONE_INFORMATION (requires SeTimeZonePrivilege)
        SystemImageFileExecutionOptionsInformation, // s: SYSTEM_IMAGE_FILE_EXECUTION_OPTIONS_INFORMATION (requires SeTcbPrivilege)
        SystemCoverageInformation, // q: COVERAGE_MODULES s: COVERAGE_MODULE_REQUEST // ExpCovQueryInformation (requires SeDebugPrivilege)
        SystemPrefetchPatchInformation, // SYSTEM_PREFETCH_PATCH_INFORMATION
        SystemVerifierFaultsInformation, // s: SYSTEM_VERIFIER_FAULTS_INFORMATION (requires SeDebugPrivilege)
        SystemSystemPartitionInformation, // q: SYSTEM_SYSTEM_PARTITION_INFORMATION
        SystemSystemDiskInformation, // q: SYSTEM_SYSTEM_DISK_INFORMATION
        SystemProcessorPerformanceDistribution, // q: SYSTEM_PROCESSOR_PERFORMANCE_DISTRIBUTION (EX in: USHORT ProcessorGroup) // NtQuerySystemInformationEx // 100
        SystemNumaProximityNodeInformation, // q; s: SYSTEM_NUMA_PROXIMITY_MAP
        SystemDynamicTimeZoneInformation, // q; s: RTL_DYNAMIC_TIME_ZONE_INFORMATION (requires SeTimeZonePrivilege)
        SystemCodeIntegrityInformation, // q: SYSTEM_CODEINTEGRITY_INFORMATION // SeCodeIntegrityQueryInformation
        SystemProcessorMicrocodeUpdateInformation, // s: SYSTEM_PROCESSOR_MICROCODE_UPDATE_INFORMATION
        SystemProcessorBrandString, // q: CHAR[] // HaliQuerySystemInformation -> HalpGetProcessorBrandString, info class 23
        SystemVirtualAddressInformation, // q: SYSTEM_VA_LIST_INFORMATION[]; s: SYSTEM_VA_LIST_INFORMATION[] (requires SeIncreaseQuotaPrivilege) // MmQuerySystemVaInformation
        SystemLogicalProcessorAndGroupInformation, // q: SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX (EX in: LOGICAL_PROCESSOR_RELATIONSHIP RelationshipType) // since WIN7 // NtQuerySystemInformationEx // KeQueryLogicalProcessorRelationship
        SystemProcessorCycleTimeInformation, // q: SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION[] (EX in: USHORT ProcessorGroup) // NtQuerySystemInformationEx
        SystemStoreInformation, // q; s: SYSTEM_STORE_INFORMATION (requires SeProfileSingleProcessPrivilege) // SmQueryStoreInformation
        SystemRegistryAppendString, // s: SYSTEM_REGISTRY_APPEND_STRING_PARAMETERS // 110
        SystemAitSamplingValue, // s: ULONG (requires SeProfileSingleProcessPrivilege)
        SystemVhdBootInformation, // q: SYSTEM_VHD_BOOT_INFORMATION
        SystemCpuQuotaInformation, // q; s: PS_CPU_QUOTA_QUERY_INFORMATION
        SystemNativeBasicInformation, // q: SYSTEM_BASIC_INFORMATION
        SystemErrorPortTimeouts, // SYSTEM_ERROR_PORT_TIMEOUTS
        SystemLowPriorityIoInformation, // q: SYSTEM_LOW_PRIORITY_IO_INFORMATION
        SystemTpmBootEntropyInformation, // q: BOOT_ENTROPY_NT_RESULT // ExQueryBootEntropyInformation
        SystemVerifierCountersInformation, // q: SYSTEM_VERIFIER_COUNTERS_INFORMATION
        SystemPagedPoolInformationEx, // q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (info for WorkingSetTypePagedPool)
        SystemSystemPtesInformationEx, // q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (info for WorkingSetTypeSystemPtes) // 120
        SystemNodeDistanceInformation, // q: USHORT[4*NumaNodes] // (EX in: USHORT NodeNumber) // NtQuerySystemInformationEx
        SystemAcpiAuditInformation, // q: SYSTEM_ACPI_AUDIT_INFORMATION // HaliQuerySystemInformation -> HalpAuditQueryResults, info class 26
        SystemBasicPerformanceInformation, // q: SYSTEM_BASIC_PERFORMANCE_INFORMATION // name:wow64:whNtQuerySystemInformation_SystemBasicPerformanceInformation
        SystemQueryPerformanceCounterInformation, // q: SYSTEM_QUERY_PERFORMANCE_COUNTER_INFORMATION // since WIN7 SP1
        SystemSessionBigPoolInformation, // q: SYSTEM_SESSION_POOLTAG_INFORMATION // since WIN8
        SystemBootGraphicsInformation, // q; s: SYSTEM_BOOT_GRAPHICS_INFORMATION (kernel-mode only)
        SystemScrubPhysicalMemoryInformation, // q; s: MEMORY_SCRUB_INFORMATION
        SystemBadPageInformation, // SYSTEM_BAD_PAGE_INFORMATION
        SystemProcessorProfileControlArea, // q; s: SYSTEM_PROCESSOR_PROFILE_CONTROL_AREA
        SystemCombinePhysicalMemoryInformation, // s: MEMORY_COMBINE_INFORMATION, MEMORY_COMBINE_INFORMATION_EX, MEMORY_COMBINE_INFORMATION_EX2 // 130
        SystemEntropyInterruptTimingInformation, // q; s: SYSTEM_ENTROPY_TIMING_INFORMATION
        SystemConsoleInformation, // q; s: SYSTEM_CONSOLE_INFORMATION
        SystemPlatformBinaryInformation, // q: SYSTEM_PLATFORM_BINARY_INFORMATION (requires SeTcbPrivilege)
        SystemPolicyInformation, // q: SYSTEM_POLICY_INFORMATION (Warbird/Encrypt/Decrypt/Execute)
        SystemHypervisorProcessorCountInformation, // q: SYSTEM_HYPERVISOR_PROCESSOR_COUNT_INFORMATION
        SystemDeviceDataInformation, // q: SYSTEM_DEVICE_DATA_INFORMATION
        SystemDeviceDataEnumerationInformation, // q: SYSTEM_DEVICE_DATA_INFORMATION
        SystemMemoryTopologyInformation, // q: SYSTEM_MEMORY_TOPOLOGY_INFORMATION
        SystemMemoryChannelInformation, // q: SYSTEM_MEMORY_CHANNEL_INFORMATION
        SystemBootLogoInformation, // q: SYSTEM_BOOT_LOGO_INFORMATION // 140
        SystemProcessorPerformanceInformationEx, // q: SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION_EX // (EX in: USHORT ProcessorGroup) // NtQuerySystemInformationEx // since WINBLUE
        SystemCriticalProcessErrorLogInformation, // CRITICAL_PROCESS_EXCEPTION_DATA
        SystemSecureBootPolicyInformation, // q: SYSTEM_SECUREBOOT_POLICY_INFORMATION
        SystemPageFileInformationEx, // q: SYSTEM_PAGEFILE_INFORMATION_EX
        SystemSecureBootInformation, // q: SYSTEM_SECUREBOOT_INFORMATION
        SystemEntropyInterruptTimingRawInformation,
        SystemPortableWorkspaceEfiLauncherInformation, // q: SYSTEM_PORTABLE_WORKSPACE_EFI_LAUNCHER_INFORMATION
        SystemFullProcessInformation, // q: SYSTEM_PROCESS_INFORMATION with SYSTEM_PROCESS_INFORMATION_EXTENSION (requires admin)
        SystemKernelDebuggerInformationEx, // q: SYSTEM_KERNEL_DEBUGGER_INFORMATION_EX
        SystemBootMetadataInformation, // 150 // (requires SeTcbPrivilege)
        SystemSoftRebootInformation, // q: ULONG
        SystemElamCertificateInformation, // s: SYSTEM_ELAM_CERTIFICATE_INFORMATION
        SystemOfflineDumpConfigInformation, // q: OFFLINE_CRASHDUMP_CONFIGURATION_TABLE_V2
        SystemProcessorFeaturesInformation, // q: SYSTEM_PROCESSOR_FEATURES_INFORMATION
        SystemRegistryReconciliationInformation, // s: NULL (requires admin) (flushes registry hives)
        SystemEdidInformation, // q: SYSTEM_EDID_INFORMATION
        SystemManufacturingInformation, // q: SYSTEM_MANUFACTURING_INFORMATION // since THRESHOLD
        SystemEnergyEstimationConfigInformation, // q: SYSTEM_ENERGY_ESTIMATION_CONFIG_INFORMATION
        SystemHypervisorDetailInformation, // q: SYSTEM_HYPERVISOR_DETAIL_INFORMATION
        SystemProcessorCycleStatsInformation, // q: SYSTEM_PROCESSOR_CYCLE_STATS_INFORMATION (EX in: USHORT ProcessorGroup) // NtQuerySystemInformationEx // 160
        SystemVmGenerationCountInformation,
        SystemTrustedPlatformModuleInformation, // q: SYSTEM_TPM_INFORMATION
        SystemKernelDebuggerFlags, // SYSTEM_KERNEL_DEBUGGER_FLAGS
        SystemCodeIntegrityPolicyInformation, // q; s: SYSTEM_CODEINTEGRITYPOLICY_INFORMATION
        SystemIsolatedUserModeInformation, // q: SYSTEM_ISOLATED_USER_MODE_INFORMATION
        SystemHardwareSecurityTestInterfaceResultsInformation,
        SystemSingleModuleInformation, // q: SYSTEM_SINGLE_MODULE_INFORMATION
        SystemAllowedCpuSetsInformation, // s: SYSTEM_WORKLOAD_ALLOWED_CPU_SET_INFORMATION
        SystemVsmProtectionInformation, // q: SYSTEM_VSM_PROTECTION_INFORMATION (previously SystemDmaProtectionInformation)
        SystemInterruptCpuSetsInformation, // q: SYSTEM_INTERRUPT_CPU_SET_INFORMATION // 170
        SystemSecureBootPolicyFullInformation, // q: SYSTEM_SECUREBOOT_POLICY_FULL_INFORMATION
        SystemCodeIntegrityPolicyFullInformation,
        SystemAffinitizedInterruptProcessorInformation, // q: KAFFINITY_EX // (requires SeIncreaseBasePriorityPrivilege)
        SystemRootSiloInformation, // q: SYSTEM_ROOT_SILO_INFORMATION
        SystemCpuSetInformation, // q: SYSTEM_CPU_SET_INFORMATION // since THRESHOLD2
        SystemCpuSetTagInformation, // q: SYSTEM_CPU_SET_TAG_INFORMATION
        SystemWin32WerStartCallout,
        SystemSecureKernelProfileInformation, // q: SYSTEM_SECURE_KERNEL_HYPERGUARD_PROFILE_INFORMATION
        SystemCodeIntegrityPlatformManifestInformation, // q: SYSTEM_SECUREBOOT_PLATFORM_MANIFEST_INFORMATION // NtQuerySystemInformationEx // since REDSTONE
        SystemInterruptSteeringInformation, // q: in: SYSTEM_INTERRUPT_STEERING_INFORMATION_INPUT, out: SYSTEM_INTERRUPT_STEERING_INFORMATION_OUTPUT // NtQuerySystemInformationEx // 180
        SystemSupportedProcessorArchitectures, // p: in opt: HANDLE, out: SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION[] // NtQuerySystemInformationEx
        SystemMemoryUsageInformation, // q: SYSTEM_MEMORY_USAGE_INFORMATION
        SystemCodeIntegrityCertificateInformation, // q: SYSTEM_CODEINTEGRITY_CERTIFICATE_INFORMATION
        SystemPhysicalMemoryInformation, // q: SYSTEM_PHYSICAL_MEMORY_INFORMATION // since REDSTONE2
        SystemControlFlowTransition, // (Warbird/Encrypt/Decrypt/Execute)
        SystemKernelDebuggingAllowed, // s: ULONG
        SystemActivityModerationExeState, // SYSTEM_ACTIVITY_MODERATION_EXE_STATE
        SystemActivityModerationUserSettings, // SYSTEM_ACTIVITY_MODERATION_USER_SETTINGS
        SystemCodeIntegrityPoliciesFullInformation, // NtQuerySystemInformationEx
        SystemCodeIntegrityUnlockInformation, // SYSTEM_CODEINTEGRITY_UNLOCK_INFORMATION // 190
        SystemIntegrityQuotaInformation,
        SystemFlushInformation, // q: SYSTEM_FLUSH_INFORMATION
        SystemProcessorIdleMaskInformation, // q: ULONG_PTR[ActiveGroupCount] // since REDSTONE3
        SystemSecureDumpEncryptionInformation, // NtQuerySystemInformationEx
        SystemWriteConstraintInformation, // SYSTEM_WRITE_CONSTRAINT_INFORMATION
        SystemKernelVaShadowInformation, // SYSTEM_KERNEL_VA_SHADOW_INFORMATION
        SystemHypervisorSharedPageInformation, // SYSTEM_HYPERVISOR_SHARED_PAGE_INFORMATION // since REDSTONE4
        SystemFirmwareBootPerformanceInformation,
        SystemCodeIntegrityVerificationInformation, // SYSTEM_CODEINTEGRITYVERIFICATION_INFORMATION
        SystemFirmwarePartitionInformation, // SYSTEM_FIRMWARE_PARTITION_INFORMATION // 200
        SystemSpeculationControlInformation, // SYSTEM_SPECULATION_CONTROL_INFORMATION // (CVE-2017-5715) REDSTONE3 and above.
        SystemDmaGuardPolicyInformation, // SYSTEM_DMA_GUARD_POLICY_INFORMATION
        SystemEnclaveLaunchControlInformation, // SYSTEM_ENCLAVE_LAUNCH_CONTROL_INFORMATION
        SystemWorkloadAllowedCpuSetsInformation, // SYSTEM_WORKLOAD_ALLOWED_CPU_SET_INFORMATION // since REDSTONE5
        SystemCodeIntegrityUnlockModeInformation, // SYSTEM_CODEINTEGRITY_UNLOCK_INFORMATION
        SystemLeapSecondInformation, // SYSTEM_LEAP_SECOND_INFORMATION
        SystemFlags2Information, // q: SYSTEM_FLAGS_INFORMATION
        SystemSecurityModelInformation, // SYSTEM_SECURITY_MODEL_INFORMATION // since 19H1
        SystemCodeIntegritySyntheticCacheInformation, // NtQuerySystemInformationEx
        SystemFeatureConfigurationInformation, // q: in: SYSTEM_FEATURE_CONFIGURATION_QUERY, out: SYSTEM_FEATURE_CONFIGURATION_INFORMATION; s: SYSTEM_FEATURE_CONFIGURATION_UPDATE // NtQuerySystemInformationEx // since 20H1 // 210
        SystemFeatureConfigurationSectionInformation, // q: in: SYSTEM_FEATURE_CONFIGURATION_SECTIONS_REQUEST, out: SYSTEM_FEATURE_CONFIGURATION_SECTIONS_INFORMATION // NtQuerySystemInformationEx
        SystemFeatureUsageSubscriptionInformation, // q: SYSTEM_FEATURE_USAGE_SUBSCRIPTION_DETAILS; s: SYSTEM_FEATURE_USAGE_SUBSCRIPTION_UPDATE
        SystemSecureSpeculationControlInformation, // SECURE_SPECULATION_CONTROL_INFORMATION
        SystemSpacesBootInformation, // since 20H2
        SystemFwRamdiskInformation, // SYSTEM_FIRMWARE_RAMDISK_INFORMATION
        SystemWheaIpmiHardwareInformation,
        SystemDifSetRuleClassInformation, // SYSTEM_DIF_VOLATILE_INFORMATION
        SystemDifClearRuleClassInformation,
        SystemDifApplyPluginVerificationOnDriver, // SYSTEM_DIF_PLUGIN_DRIVER_INFORMATION
        SystemDifRemovePluginVerificationOnDriver, // SYSTEM_DIF_PLUGIN_DRIVER_INFORMATION // 220
        SystemShadowStackInformation, // SYSTEM_SHADOW_STACK_INFORMATION
        SystemBuildVersionInformation, // q: in: ULONG (LayerNumber), out: SYSTEM_BUILD_VERSION_INFORMATION // NtQuerySystemInformationEx // 222
        SystemPoolLimitInformation, // SYSTEM_POOL_LIMIT_INFORMATION (requires SeIncreaseQuotaPrivilege) // NtQuerySystemInformationEx
        SystemCodeIntegrityAddDynamicStore,
        SystemCodeIntegrityClearDynamicStores,
        SystemDifPoolTrackingInformation,
        SystemPoolZeroingInformation, // q: SYSTEM_POOL_ZEROING_INFORMATION
        SystemDpcWatchdogInformation, // q; s: SYSTEM_DPC_WATCHDOG_CONFIGURATION_INFORMATION
        SystemDpcWatchdogInformation2, // q; s: SYSTEM_DPC_WATCHDOG_CONFIGURATION_INFORMATION_V2
        SystemSupportedProcessorArchitectures2, // q: in opt: HANDLE, out: SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION[] // NtQuerySystemInformationEx // 230
        SystemSingleProcessorRelationshipInformation, // q: SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX // (EX in: PROCESSOR_NUMBER Processor) // NtQuerySystemInformationEx
        SystemXfgCheckFailureInformation, // q: SYSTEM_XFG_FAILURE_INFORMATION
        SystemIommuStateInformation, // SYSTEM_IOMMU_STATE_INFORMATION // since 22H1
        SystemHypervisorMinrootInformation, // SYSTEM_HYPERVISOR_MINROOT_INFORMATION
        SystemHypervisorBootPagesInformation, // SYSTEM_HYPERVISOR_BOOT_PAGES_INFORMATION
        SystemPointerAuthInformation, // SYSTEM_POINTER_AUTH_INFORMATION
        SystemSecureKernelDebuggerInformation, // NtQuerySystemInformationEx
        SystemOriginalImageFeatureInformation, // q: in: SYSTEM_ORIGINAL_IMAGE_FEATURE_INFORMATION_INPUT, out: SYSTEM_ORIGINAL_IMAGE_FEATURE_INFORMATION_OUTPUT // NtQuerySystemInformationEx
        SystemMemoryNumaInformation, // SYSTEM_MEMORY_NUMA_INFORMATION_INPUT, SYSTEM_MEMORY_NUMA_INFORMATION_OUTPUT // NtQuerySystemInformationEx
        SystemMemoryNumaPerformanceInformation, // SYSTEM_MEMORY_NUMA_PERFORMANCE_INFORMATION_INPUTSYSTEM_MEMORY_NUMA_PERFORMANCE_INFORMATION_INPUT, SYSTEM_MEMORY_NUMA_PERFORMANCE_INFORMATION_OUTPUT // since 24H2 // 240
        SystemCodeIntegritySignedPoliciesFullInformation,
        SystemSecureCoreInformation, // SystemSecureSecretsInformation
        SystemTrustedAppsRuntimeInformation, // SYSTEM_TRUSTEDAPPS_RUNTIME_INFORMATION
        SystemBadPageInformationEx, // SYSTEM_BAD_PAGE_INFORMATION
        SystemResourceDeadlockTimeout, // ULONG
        SystemBreakOnContextUnwindFailureInformation, // ULONG (requires SeDebugPrivilege)
        SystemOslRamdiskInformation, // SYSTEM_OSL_RAMDISK_INFORMATION
        MaxSystemInfoClass
    } SYSTEM_INFORMATION_CLASS;

    typedef enum _KTHREAD_STATE
    {
        Initialized = 0,
        Ready = 1,
        Running = 2,
        Standby = 3,
        Terminated = 4,
        Waiting = 5,
        Transition = 6,
        DeferredReady = 7,
        GateWait = 8
    } KTHREAD_STATE;

    typedef enum _KWAIT_REASON
    {
        Executive = 0,
        FreePage = 1,
        PageIn = 2,
        PoolAllocation = 3,
        DelayExecution = 4,
        Suspended = 5,
        UserRequest = 6,
        WrExecutive = 7,
        WrFreePage = 8,
        WrPageIn = 9,
        WrPoolAllocation = 10,
        WrDelayExecution = 11,
        WrSuspended = 12,
        WrUserRequest = 13,
        WrEventPair = 14,
        WrQueue = 15,
        WrLpcReceive = 16,
        WrLpcReply = 17,
        WrVirtualMemory = 18,
        WrPageOut = 19,
        WrRendezvous = 20,
        Spare2 = 21,
        Spare3 = 22,
        Spare4 = 23,
        Spare5 = 24,
        WrCalloutStack = 25,
        WrKernel = 26,
        WrResource = 27,
        WrPushLock = 28,
        WrMutex = 29,
        WrQuantumEnd = 30,
        WrDispatchInt = 31,
        WrPreempted = 32,
        WrYieldExecution = 33,
        WrFastMutex = 34,
        WrGuardedMutex = 35,
        WrRundown = 36,
        MaximumWaitReason = 37
    } KWAIT_REASON;

    typedef struct _CLIENT_ID {
        HANDLE UniqueProcess;
        HANDLE UniqueThread;
    } CLIENT_ID;

    typedef struct _UNICODE_STRING {
        USHORT Length;
        USHORT MaximumLength;
        PWSTR  Buffer;
    } UNICODE_STRING;
    typedef UNICODE_STRING* PUNICODE_STRING;
    typedef const UNICODE_STRING* PCUNICODE_STRING;

    typedef LONG KPRIORITY;

    // https://ntdoc.m417z.com/system_thread_information
    typedef struct _SYSTEM_THREAD_INFORMATION
    {
        LARGE_INTEGER KernelTime;
        LARGE_INTEGER UserTime;
        LARGE_INTEGER CreateTime;
        ULONG WaitTime;
        PVOID StartAddress;
        CLIENT_ID ClientId;
        KPRIORITY Priority;
        KPRIORITY BasePriority;
        ULONG ContextSwitches;
        KTHREAD_STATE ThreadState;
        KWAIT_REASON WaitReason;
    } SYSTEM_THREAD_INFORMATION, * PSYSTEM_THREAD_INFORMATION;

    // https://ntdoc.m417z.com/system_process_information
    typedef struct _SYSTEM_PROCESS_INFORMATION
    {
        ULONG NextEntryOffset;
        ULONG NumberOfThreads;
        LARGE_INTEGER WorkingSetPrivateSize; // since VISTA
        ULONG HardFaultCount; // since WIN7
        ULONG NumberOfThreadsHighWatermark; // since WIN7
        ULONGLONG CycleTime; // since WIN7
        LARGE_INTEGER CreateTime;
        LARGE_INTEGER UserTime;
        LARGE_INTEGER KernelTime;
        UNICODE_STRING ImageName;
        KPRIORITY BasePriority;
        DWORD_PTR UniqueProcessId;
        DWORD_PTR UniqueParentProcessId;
        ULONG HandleCount;
        ULONG SessionId;
        ULONG_PTR UniqueProcessKey; // since VISTA (requires SystemExtendedProcessInformation)
        SIZE_T PeakVirtualSize;
        SIZE_T VirtualSize;
        ULONG PageFaultCount;
        SIZE_T PeakWorkingSetSize;
        SIZE_T WorkingSetSize;
        SIZE_T QuotaPeakPagedPoolUsage;
        SIZE_T QuotaPagedPoolUsage;
        SIZE_T QuotaPeakNonPagedPoolUsage;
        SIZE_T QuotaNonPagedPoolUsage;
        SIZE_T PagefileUsage;
        SIZE_T PeakPagefileUsage;
        SIZE_T PrivatePageCount;
        LARGE_INTEGER ReadOperationCount;
        LARGE_INTEGER WriteOperationCount;
        LARGE_INTEGER OtherOperationCount;
        LARGE_INTEGER ReadTransferCount;
        LARGE_INTEGER WriteTransferCount;
        LARGE_INTEGER OtherTransferCount;
        SYSTEM_THREAD_INFORMATION Threads[1]; // SystemProcessInformation
        // SYSTEM_EXTENDED_THREAD_INFORMATION Threads[1]; // SystemExtendedProcessinformation
        // SYSTEM_EXTENDED_THREAD_INFORMATION + SYSTEM_PROCESS_INFORMATION_EXTENSION // SystemFullProcessInformation
    } SYSTEM_PROCESS_INFORMATION, * PSYSTEM_PROCESS_INFORMATION;

    typedef NTSTATUS(NTAPI* pFnNtQuerySystemInformation)(
        IN SYSTEM_INFORMATION_CLASS SystemInformationClass,
        OUT PVOID SystemInformation,
        IN ULONG SystemInformationLength,
        OUT PULONG ReturnLength OPTIONAL
        );

    pFnNtQuerySystemInformation _NtQuerySystemInformation;

    static PROC_TOKEN_GROUPS _GetProcessTokenGroups(HANDLE hProcess);

    NTSTATUS NTAPI NtQuerySystemInformation(
        IN SYSTEM_INFORMATION_CLASS SystemInformationClass,
        OUT PVOID SystemInformation,
        IN ULONG SystemInformationLength,
        OUT PULONG ReturnLength OPTIONAL
    )
    {
        if (!_NtQuerySystemInformation)
        {
            do
            {
                HMODULE hModule = ::GetModuleHandle(_T("Ntdll.dll"));
                if (!hModule)
                {
                    break;
                }

                _NtQuerySystemInformation = (pFnNtQuerySystemInformation)::GetProcAddress(
                    hModule,
                    "NtQuerySystemInformation"
                );
                if (!_NtQuerySystemInformation)
                {
                    break;
                }

            } while (false);
        }

        if (!_NtQuerySystemInformation)
        {
            return 0;
        }

        return _NtQuerySystemInformation(
            SystemInformationClass,
            SystemInformation,
            SystemInformationLength,
            ReturnLength
        );
    }

    typedef enum _PROCESSINFOCLASS
    {
        ProcessBasicInformation, // q: PROCESS_BASIC_INFORMATION, PROCESS_EXTENDED_BASIC_INFORMATION
        ProcessQuotaLimits, // qs: QUOTA_LIMITS, QUOTA_LIMITS_EX
        ProcessIoCounters, // q: IO_COUNTERS
        ProcessVmCounters, // q: VM_COUNTERS, VM_COUNTERS_EX, VM_COUNTERS_EX2
        ProcessTimes, // q: KERNEL_USER_TIMES
        ProcessBasePriority, // s: KPRIORITY
        ProcessRaisePriority, // s: ULONG
        ProcessDebugPort, // q: HANDLE
        ProcessExceptionPort, // s: PROCESS_EXCEPTION_PORT (requires SeTcbPrivilege)
        ProcessAccessToken, // s: PROCESS_ACCESS_TOKEN
        ProcessLdtInformation, // qs: PROCESS_LDT_INFORMATION // 10
        ProcessLdtSize, // s: PROCESS_LDT_SIZE
        ProcessDefaultHardErrorMode, // qs: ULONG
        ProcessIoPortHandlers, // (kernel-mode only) // s: PROCESS_IO_PORT_HANDLER_INFORMATION
        ProcessPooledUsageAndLimits, // q: POOLED_USAGE_AND_LIMITS
        ProcessWorkingSetWatch, // q: PROCESS_WS_WATCH_INFORMATION[]; s: void
        ProcessUserModeIOPL, // qs: ULONG (requires SeTcbPrivilege)
        ProcessEnableAlignmentFaultFixup, // s: BOOLEAN
        ProcessPriorityClass, // qs: PROCESS_PRIORITY_CLASS
        ProcessWx86Information, // qs: ULONG (requires SeTcbPrivilege) (VdmAllowed)
        ProcessHandleCount, // q: ULONG, PROCESS_HANDLE_INFORMATION // 20
        ProcessAffinityMask, // (q >WIN7)s: KAFFINITY, qs: GROUP_AFFINITY
        ProcessPriorityBoost, // qs: ULONG
        ProcessDeviceMap, // qs: PROCESS_DEVICEMAP_INFORMATION, PROCESS_DEVICEMAP_INFORMATION_EX
        ProcessSessionInformation, // q: PROCESS_SESSION_INFORMATION
        ProcessForegroundInformation, // s: PROCESS_FOREGROUND_BACKGROUND
        ProcessWow64Information, // q: ULONG_PTR
        ProcessImageFileName, // q: UNICODE_STRING
        ProcessLUIDDeviceMapsEnabled, // q: ULONG
        ProcessBreakOnTermination, // qs: ULONG
        ProcessDebugObjectHandle, // q: HANDLE // 30
        ProcessDebugFlags, // qs: ULONG
        ProcessHandleTracing, // q: PROCESS_HANDLE_TRACING_QUERY; s: PROCESS_HANDLE_TRACING_ENABLE[_EX] or void to disable
        ProcessIoPriority, // qs: IO_PRIORITY_HINT
        ProcessExecuteFlags, // qs: ULONG (MEM_EXECUTE_OPTION_*)
        ProcessTlsInformation, // PROCESS_TLS_INFORMATION // ProcessResourceManagement
        ProcessCookie, // q: ULONG
        ProcessImageInformation, // q: SECTION_IMAGE_INFORMATION
        ProcessCycleTime, // q: PROCESS_CYCLE_TIME_INFORMATION // since VISTA
        ProcessPagePriority, // qs: PAGE_PRIORITY_INFORMATION
        ProcessInstrumentationCallback, // s: PVOID or PROCESS_INSTRUMENTATION_CALLBACK_INFORMATION // 40
        ProcessThreadStackAllocation, // s: PROCESS_STACK_ALLOCATION_INFORMATION, PROCESS_STACK_ALLOCATION_INFORMATION_EX
        ProcessWorkingSetWatchEx, // q: PROCESS_WS_WATCH_INFORMATION_EX[]; s: void
        ProcessImageFileNameWin32, // q: UNICODE_STRING
        ProcessImageFileMapping, // q: HANDLE (input)
        ProcessAffinityUpdateMode, // qs: PROCESS_AFFINITY_UPDATE_MODE
        ProcessMemoryAllocationMode, // qs: PROCESS_MEMORY_ALLOCATION_MODE
        ProcessGroupInformation, // q: USHORT[]
        ProcessTokenVirtualizationEnabled, // s: ULONG
        ProcessConsoleHostProcess, // qs: ULONG_PTR // ProcessOwnerInformation
        ProcessWindowInformation, // q: PROCESS_WINDOW_INFORMATION // 50
        ProcessHandleInformation, // q: PROCESS_HANDLE_SNAPSHOT_INFORMATION // since WIN8
        ProcessMitigationPolicy, // s: PROCESS_MITIGATION_POLICY_INFORMATION
        ProcessDynamicFunctionTableInformation, // s: PROCESS_DYNAMIC_FUNCTION_TABLE_INFORMATION
        ProcessHandleCheckingMode, // qs: ULONG; s: 0 disables, otherwise enables
        ProcessKeepAliveCount, // q: PROCESS_KEEPALIVE_COUNT_INFORMATION
        ProcessRevokeFileHandles, // s: PROCESS_REVOKE_FILE_HANDLES_INFORMATION
        ProcessWorkingSetControl, // s: PROCESS_WORKING_SET_CONTROL (requires SeDebugPrivilege)
        ProcessHandleTable, // q: ULONG[] // since WINBLUE
        ProcessCheckStackExtentsMode, // qs: ULONG // KPROCESS->CheckStackExtents (CFG)
        ProcessCommandLineInformation, // q: UNICODE_STRING // 60
        ProcessProtectionInformation, // q: PS_PROTECTION
        ProcessMemoryExhaustion, // s: PROCESS_MEMORY_EXHAUSTION_INFO // since THRESHOLD
        ProcessFaultInformation, // s: PROCESS_FAULT_INFORMATION
        ProcessTelemetryIdInformation, // q: PROCESS_TELEMETRY_ID_INFORMATION
        ProcessCommitReleaseInformation, // qs: PROCESS_COMMIT_RELEASE_INFORMATION
        ProcessDefaultCpuSetsInformation, // qs: SYSTEM_CPU_SET_INFORMATION[5]
        ProcessAllowedCpuSetsInformation, // qs: SYSTEM_CPU_SET_INFORMATION[5]
        ProcessSubsystemProcess,
        ProcessJobMemoryInformation, // q: PROCESS_JOB_MEMORY_INFO
        ProcessInPrivate, // q: BOOLEAN; s: void // ETW // since THRESHOLD2 // 70
        ProcessRaiseUMExceptionOnInvalidHandleClose, // qs: ULONG; s: 0 disables, otherwise enables
        ProcessIumChallengeResponse,
        ProcessChildProcessInformation, // q: PROCESS_CHILD_PROCESS_INFORMATION
        ProcessHighGraphicsPriorityInformation, // qs: BOOLEAN (requires SeTcbPrivilege)
        ProcessSubsystemInformation, // q: SUBSYSTEM_INFORMATION_TYPE // since REDSTONE2
        ProcessEnergyValues, // q: PROCESS_ENERGY_VALUES, PROCESS_EXTENDED_ENERGY_VALUES
        ProcessPowerThrottlingState, // qs: POWER_THROTTLING_PROCESS_STATE
        ProcessReserved3Information, // ProcessActivityThrottlePolicy // PROCESS_ACTIVITY_THROTTLE_POLICY
        ProcessWin32kSyscallFilterInformation, // q: WIN32K_SYSCALL_FILTER
        ProcessDisableSystemAllowedCpuSets, // s: BOOLEAN // 80
        ProcessWakeInformation, // q: PROCESS_WAKE_INFORMATION
        ProcessEnergyTrackingState, // qs: PROCESS_ENERGY_TRACKING_STATE
        ProcessManageWritesToExecutableMemory, // MANAGE_WRITES_TO_EXECUTABLE_MEMORY // since REDSTONE3
        ProcessCaptureTrustletLiveDump,
        ProcessTelemetryCoverage, // q: TELEMETRY_COVERAGE_HEADER; s: TELEMETRY_COVERAGE_POINT
        ProcessEnclaveInformation,
        ProcessEnableReadWriteVmLogging, // qs: PROCESS_READWRITEVM_LOGGING_INFORMATION
        ProcessUptimeInformation, // q: PROCESS_UPTIME_INFORMATION
        ProcessImageSection, // q: HANDLE
        ProcessDebugAuthInformation, // since REDSTONE4 // 90
        ProcessSystemResourceManagement, // s: PROCESS_SYSTEM_RESOURCE_MANAGEMENT
        ProcessSequenceNumber, // q: ULONGLONG
        ProcessLoaderDetour, // since REDSTONE5
        ProcessSecurityDomainInformation, // q: PROCESS_SECURITY_DOMAIN_INFORMATION
        ProcessCombineSecurityDomainsInformation, // s: PROCESS_COMBINE_SECURITY_DOMAINS_INFORMATION
        ProcessEnableLogging, // qs: PROCESS_LOGGING_INFORMATION
        ProcessLeapSecondInformation, // qs: PROCESS_LEAP_SECOND_INFORMATION
        ProcessFiberShadowStackAllocation, // s: PROCESS_FIBER_SHADOW_STACK_ALLOCATION_INFORMATION // since 19H1
        ProcessFreeFiberShadowStackAllocation, // s: PROCESS_FREE_FIBER_SHADOW_STACK_ALLOCATION_INFORMATION
        ProcessAltSystemCallInformation, // s: PROCESS_SYSCALL_PROVIDER_INFORMATION // since 20H1 // 100
        ProcessDynamicEHContinuationTargets, // s: PROCESS_DYNAMIC_EH_CONTINUATION_TARGETS_INFORMATION
        ProcessDynamicEnforcedCetCompatibleRanges, // s: PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGE_INFORMATION // since 20H2
        ProcessCreateStateChange, // since WIN11
        ProcessApplyStateChange,
        ProcessEnableOptionalXStateFeatures, // s: ULONG64 // optional XState feature bitmask
        ProcessAltPrefetchParam, // qs: OVERRIDE_PREFETCH_PARAMETER // App Launch Prefetch (ALPF) // since 22H1
        ProcessAssignCpuPartitions, // HANDLE
        ProcessPriorityClassEx, // s: PROCESS_PRIORITY_CLASS_EX
        ProcessMembershipInformation, // q: PROCESS_MEMBERSHIP_INFORMATION
        ProcessEffectiveIoPriority, // q: IO_PRIORITY_HINT // 110
        ProcessEffectivePagePriority, // q: ULONG
        ProcessSchedulerSharedData, // SCHEDULER_SHARED_DATA_SLOT_INFORMATION // since 24H2
        ProcessSlistRollbackInformation,
        ProcessNetworkIoCounters, // q: PROCESS_NETWORK_COUNTERS
        ProcessFindFirstThreadByTebValue, // PROCESS_TEB_VALUE_INFORMATION
        MaxProcessInfoClass
    } PROCESSINFOCLASS;

    typedef NTSTATUS(NTAPI* pFnNtQueryInformationProcess)(
        IN            HANDLE           ProcessHandle,
        IN            PROCESSINFOCLASS ProcessInformationClass,
        OUT           PVOID            ProcessInformation,
        IN            ULONG            ProcessInformationLength,
        OUT OPTIONAL  PULONG           ReturnLength
        );

    pFnNtQueryInformationProcess _NtQueryInformationProcess = nullptr;

    NTSTATUS NTAPI NtQueryInformationProcess(
        IN            HANDLE           ProcessHandle,
        IN            PROCESSINFOCLASS ProcessInformationClass,
        OUT           PVOID            ProcessInformation,
        IN            ULONG            ProcessInformationLength,
        OUT OPTIONAL  PULONG           ReturnLength
    )
    {
        if (!_NtQueryInformationProcess)
        {
            do
            {
                HMODULE hModule = ::GetModuleHandle(_T("Ntdll.dll"));
                if (!hModule)
                {
                    break;
                }

                _NtQueryInformationProcess = (pFnNtQueryInformationProcess)::GetProcAddress(
                    hModule,
                    "NtQueryInformationProcess"
                );
                if (!_NtQueryInformationProcess)
                {
                    break;
                }

            } while (false);
        }

        if (!_NtQueryInformationProcess)
        {
            return 0;
        }

        return _NtQueryInformationProcess(
            ProcessHandle,
            ProcessInformationClass,
            ProcessInformation,
            ProcessInformationLength,
            ReturnLength
        );
    }

    CProcessUsageCollector::CProcessUsageCollector()
        :
        m_cpuUsage(0.0f),
        m_hEevent(NULL)
    {
        if (NULL == m_hEevent)
        {
            m_hEevent = ::CreateEvent(NULL, FALSE, FALSE, NULL);
        }

        if (NULL == m_hEevent)
        {
            return;
        }

        m_task = std::move(std::thread([this]() {

            typedef struct _PROCESS_TIME
            {
                uint64_t    CreateTime = 0;
                uint64_t    UserTime = 0;
                uint64_t    KernelTime = 0;
            }PROCESS_TIME;

            using PROCESS_TIME_LIST = std::map<uint64_t, PROCESS_TIME>;

            PROCESS_TIME_LIST lastProcTimeList;

            uint64_t    lastSysIdleTime = 0;
            uint64_t    lastSysKernelTime = 0;
            uint64_t    lastSysUserTime = 0;

            while (true)
            {
                PROCESS_TIME_LIST curProcTimeList;
                PSYSTEM_PROCESS_INFORMATION pSpi = NULL;
                NTSTATUS ntStatus = STATUS_SUCCESS;
                ULONG uDataLength = 0;
                ULONG uReturnLength = 0;

                do
                {
                    ntStatus = NtQuerySystemInformation(
                        SystemProcessInformation,
                        NULL,
                        0,
                        &uReturnLength
                    );
                    if (STATUS_INFO_LENGTH_MISMATCH != ntStatus)
                    {
                        break;
                    }

                    uDataLength = uReturnLength * 4;

                    pSpi = (PSYSTEM_PROCESS_INFORMATION)::HeapAlloc(
                        ::GetProcessHeap(),
                        HEAP_ZERO_MEMORY,
                        uDataLength
                    );
                    if (!pSpi)
                    {
                        break;
                    }

                    ntStatus = NtQuerySystemInformation(
                        SystemProcessInformation,
                        pSpi,
                        uDataLength,
                        &uReturnLength
                    );
                    if (STATUS_SUCCESS != ntStatus)
                    {
                        break;
                    }

                    // 查询当前系统时间
                    uint64_t curSysIdleTime = 0;
                    uint64_t curSysKernelTime = 0;
                    uint64_t curSysUserTime = 0;
                    ::GetSystemTimes((PFILETIME)&curSysIdleTime, (PFILETIME)&curSysKernelTime, (PFILETIME)&curSysUserTime);

                    if (0 == lastSysKernelTime)
                    {
                        lastSysIdleTime = curSysIdleTime;
                        lastSysKernelTime = curSysKernelTime;
                        lastSysUserTime = curSysUserTime;
                    }

                    // 计算 当前CPU 总时间
                    uint64_t fCurCpuTotalTime = (curSysKernelTime - lastSysKernelTime) + (curSysUserTime - lastSysUserTime);

                    // 计算 CPU 使用率
                    double fCpuUsage = (double)(fCurCpuTotalTime - (curSysIdleTime - lastSysIdleTime)) / (double)fCurCpuTotalTime;

                    if (!::isnan(fCpuUsage))
                    {
                        m_cpuUsage = fCpuUsage;
                    }

                    {
                        std::lock_guard<std::mutex> lock(m_mutex);
                        PSYSTEM_PROCESS_INFORMATION pSpiTemp = pSpi;
                        while (pSpiTemp)
                        {
                            DWORD dwProcessId = (DWORD)pSpiTemp->UniqueProcessId;

                            // 记录进程时间
                            PROCESS_TIME procTime;
                            procTime.CreateTime = pSpiTemp->CreateTime.QuadPart;
                            procTime.KernelTime = pSpiTemp->KernelTime.QuadPart;
                            procTime.UserTime = pSpiTemp->UserTime.QuadPart;

                            auto itProc = lastProcTimeList.find(dwProcessId);
                            if (itProc != lastProcTimeList.end())
                            {
                                uint64_t fProcTotalTime = (procTime.KernelTime - itProc->second.KernelTime) +
                                    (procTime.UserTime - itProc->second.UserTime);

                                auto res = m_procUsageList.emplace(dwProcessId, (double)(fProcTotalTime) / (double)fCurCpuTotalTime);
                                if (!res.second)
                                {
                                    res.first->second = (double)(fProcTotalTime) / (double)fCurCpuTotalTime;
                                }
                            }
                            else
                            {
                                auto res = m_procUsageList.emplace(dwProcessId, 0.0f);
                                if (!res.second)
                                {
                                    res.first->second = 0.0f;
                                }
                            }

                            curProcTimeList.emplace(dwProcessId, procTime);

                            if (!pSpiTemp->NextEntryOffset)
                            {
                                break;
                            }

                            pSpiTemp = (PSYSTEM_PROCESS_INFORMATION)((uint8_t*)pSpiTemp + pSpiTemp->NextEntryOffset);
                        }
                    }

                    lastProcTimeList = curProcTimeList;
                    lastSysIdleTime = curSysIdleTime;
                    lastSysKernelTime = curSysKernelTime;
                    lastSysUserTime = curSysUserTime;

                } while (false);

                if (pSpi)
                {
                    ::HeapFree(::GetProcessHeap(), 0, pSpi);
                }

                DWORD dwWait = ::WaitForSingleObject(m_hEevent, 1000);
                if (WAIT_OBJECT_0 == dwWait)
                {
                    break;
                }
            }
            }
        )
        );
    }

    CProcessUsageCollector::~CProcessUsageCollector()
    {
        if (m_hEevent)
        {
            if (m_task.joinable())
            {
                ::SetEvent(m_hEevent);
                m_task.join();
            }

            ::CloseHandle(m_hEevent);
        }
    }

    double CProcessUsageCollector::GetProcessUsage(DWORD dwPID)
    {
        std::lock_guard<std::mutex> lock(m_mutex);

        auto itFind = m_procUsageList.find(dwPID);
        if (m_procUsageList.end() != itFind)
        {
            return itFind->second;
        }

        return 0.0f;
    }

    std::string _WStrToMultiStr(UINT CodePage, const std::wstring& str)
    {
        //计算缓冲区所需的字节长度
        int cbMultiByte = ::WideCharToMultiByte(CodePage, 0, str.c_str(), -1, NULL, 0, NULL, NULL);
        std::string strResult(cbMultiByte, 0);

        //成功则返回写入到指示的缓冲区的字节数
        size_t nConverted = ::WideCharToMultiByte(CodePage, 0, str.c_str(), (int)str.size(), &strResult[0], (int)strResult.size(), NULL, NULL);

        //调整内容长度
        strResult.resize(nConverted);
        return strResult;
    }

    std::wstring _MultiStrToWStr(UINT CodePage, const std::string& str)
    {
        //计算缓冲区所需的字符长度
        int cchWideChar = ::MultiByteToWideChar(CodePage, 0, str.c_str(), -1, NULL, 0);
        std::wstring strResult(cchWideChar, 0);

        //成功则返回写入到指示的缓冲区的字符数
        size_t nConverted = ::MultiByteToWideChar(CodePage, 0, str.c_str(), (int)str.size(), &strResult[0], (int)strResult.size());

        //调整内容长度
        strResult.resize(nConverted);
        return strResult;
    }

    std::string WStrToAStr(const std::wstring& str)
    {
        return _WStrToMultiStr(CP_ACP, str);
    }

    std::string WStrToU8Str(const std::wstring& str)
    {
        return _WStrToMultiStr(CP_UTF8, str);
    }

    _tstring WStrToTStr(const std::wstring& str)
    {
#ifdef _UNICODE
        return str;
#else
        return _WStrToMultiStr(CP_ACP, str);
#endif
    }

    std::wstring AStrToWStr(const std::string& str)
    {
        return _MultiStrToWStr(CP_ACP, str);
    }

    std::string AStrToU8Str(const std::string& str)
    {
        return WStrToU8Str(AStrToWStr(str));
    }

    _tstring AStrToTStr(const std::string& str)
    {
#ifdef _UNICODE
        return _MultiStrToWStr(CP_ACP, str);
#else
        return str;
#endif
    }

    std::wstring U8StrToWStr(const std::string& str)
    {
        return _MultiStrToWStr(CP_UTF8, str);
    }

    std::string U8StrToAStr(const std::string& str)
    {
        return WStrToAStr(U8StrToWStr(str));
    }

    _tstring U8StrToTStr(const std::string& str)
    {
#ifdef _UNICODE
        return _MultiStrToWStr(CP_UTF8, str);
#else
        return WStrToAStr(U8StrToWStr(str));
#endif
    }

    std::string TStrToAStr(const _tstring& str)
    {
#ifdef _UNICODE
        return _WStrToMultiStr(CP_ACP, str);
#else
        return str;
#endif
    }

    std::wstring TStrToWStr(const _tstring& str)
    {
#ifdef _UNICODE
        return str;
#else
        return AStrToWStr(str);
#endif
    }

    std::string TStrToU8Str(const _tstring& str)
    {
#ifdef _UNICODE
        return WStrToU8Str(str);
#else
        return WStrToU8Str(AStrToWStr(str));
#endif
    }

    _MODULE_INFO::_MODULE_INFO() :
        th32ProcessID(0),
        GlblcntUsage(0),
        modBaseAddr(0),
        modBaseSize(0),
        hModule(NULL)
    {

    }

    _LANGANDCODEPAGE::_LANGANDCODEPAGE() : wLangId(0), wCodePage(0)
    {

    }

    bool _LANGANDCODEPAGE::operator < (const _LANGANDCODEPAGE& r) const
    {
        if (this->wLangId < r.wLangId)
        {
            return true;
        }

        if (this->wCodePage < r.wCodePage)
        {
            return true;
        }

        return false;
    }

    bool _LANGANDCODEPAGE::operator == (const _LANGANDCODEPAGE& r) const
    {
        return this->wLangId == r.wLangId && this->wCodePage == r.wCodePage;
    }

    CPEHeader::CPEHeader()
        :
        m_pDosHeader(nullptr),
        m_pNtHeaders32(nullptr),
        m_pNtHeaders64(nullptr),
        m_NtHeadersMagic(0)
    {

    }

    CPEHeader::CPEHeader(const CPEHeader& r) noexcept
        :
        m_pDosHeader(nullptr),
        m_pNtHeaders32(nullptr),
        m_pNtHeaders64(nullptr),
        m_NtHeadersMagic(0)
    {
        CopyFrom(r);
    }

    CPEHeader::CPEHeader(CPEHeader&& r) noexcept
        :
        m_pDosHeader(r.m_pDosHeader),
        m_pNtHeaders32(r.m_pNtHeaders32),
        m_pNtHeaders64(r.m_pNtHeaders64),
        m_NtHeadersMagic(r.m_NtHeadersMagic)
    {
        r.m_NtHeadersMagic = 0;
        r.m_pDosHeader = nullptr;
        r.m_pNtHeaders32 = nullptr;
        r.m_pNtHeaders64 = nullptr;
    }

    CPEHeader& CPEHeader::operator = (const CPEHeader& r) noexcept
    {
        if (&r != this)
        {
            CopyFrom(r);
        }

        return *this;
    }

    CPEHeader& CPEHeader::operator = (CPEHeader&& r) noexcept
    {
        if (&r != this)
        {
            Release();

            m_NtHeadersMagic = r.m_NtHeadersMagic;
            m_pDosHeader = r.m_pDosHeader;
            m_pNtHeaders32 = r.m_pNtHeaders32;
            m_pNtHeaders64 = r.m_pNtHeaders64;

            r.m_NtHeadersMagic = 0;
            r.m_pDosHeader = nullptr;
            r.m_pNtHeaders32 = nullptr;
            r.m_pNtHeaders64 = nullptr;
        }

        return *this;
    }

    CPEHeader::~CPEHeader()
    {
        Release();
    }

    void CPEHeader::CopyFrom(const CPEHeader& r)
    {
        if (&r != this)
        {
            Release();

            if (r.m_pDosHeader)
            {
                m_pDosHeader = new (std::nothrow) IMAGE_DOS_HEADER(*r.m_pDosHeader);
            }

            if (r.m_pNtHeaders32)
            {
                m_pNtHeaders32 = new (std::nothrow) IMAGE_NT_HEADERS32(*r.m_pNtHeaders32);
            }

            if (r.m_pNtHeaders64)
            {
                m_pNtHeaders64 = new (std::nothrow) IMAGE_NT_HEADERS64(*r.m_pNtHeaders64);
            }

            m_NtHeadersMagic = r.m_NtHeadersMagic;
        }
    }

    void CPEHeader::Release()
    {
        if (m_pDosHeader)
        {
            delete m_pDosHeader;
            m_pDosHeader = nullptr;
        }

        if (m_pNtHeaders32)
        {
            delete m_pNtHeaders32;
            m_pNtHeaders32 = nullptr;
        }

        if (m_pNtHeaders64)
        {
            delete m_pNtHeaders64;
            m_pNtHeaders64 = nullptr;
        }

        m_NtHeadersMagic = 0;
    }

    bool CPEHeader::LoadFromFile(const _tstring& strFile)
    {
        Release();

        HMODULE hModule = NULL;
        LPVOID OldValue = NULL;
        BOOL isDisableWow64Fs = ::Wow64DisableWow64FsRedirection(&OldValue);
        bool fSuccess = false;

        do
        {
            DWORD dwFlags = LOAD_LIBRARY_AS_DATAFILE | LOAD_LIBRARY_AS_IMAGE_RESOURCE;
            hModule = ::LoadLibraryEx(
                strFile.c_str(),
                0,
                dwFlags
            );

            if (NULL == hModule)
            {
                break;
            }

            LPBYTE pHeader = (BYTE*)hModule;
            BYTE* pImageData = (BYTE*)((ULONG_PTR)pHeader & ~((ULONG_PTR)0x03));
            PIMAGE_DOS_HEADER pDosHeader = (PIMAGE_DOS_HEADER)pImageData;
            if (pDosHeader->e_magic != IMAGE_DOS_SIGNATURE)
            {
                break;
            }

            PIMAGE_NT_HEADERS pNtHeader = (IMAGE_NT_HEADERS*)((BYTE*)(pDosHeader)+(DWORD)(pDosHeader->e_lfanew));
            if (IMAGE_NT_SIGNATURE != pNtHeader->Signature)
            {
                break;
            }

            // 检查 是否为 32位程序可选头
            if (IMAGE_NT_OPTIONAL_HDR32_MAGIC == pNtHeader->OptionalHeader.Magic)
            {
                m_NtHeadersMagic = IMAGE_NT_OPTIONAL_HDR32_MAGIC;
                m_pNtHeaders32 = new (std::nothrow) IMAGE_NT_HEADERS32;
                if (m_pNtHeaders32)
                {
                    *m_pNtHeaders32 = *(PIMAGE_NT_HEADERS32)pNtHeader;
                }
            }
            // 检查 是否为 64位程序可选头
            else if (IMAGE_NT_OPTIONAL_HDR64_MAGIC == pNtHeader->OptionalHeader.Magic)
            {
                m_NtHeadersMagic = IMAGE_NT_OPTIONAL_HDR64_MAGIC;
                m_pNtHeaders64 = new (std::nothrow) IMAGE_NT_HEADERS64;
                if (m_pNtHeaders64)
                {
                    *m_pNtHeaders64 = *(PIMAGE_NT_HEADERS64)pNtHeader;
                }
            }
            else
            {
                break;
            }

            m_pDosHeader = new (std::nothrow) IMAGE_DOS_HEADER;
            if (m_pDosHeader)
            {
                *m_pDosHeader = *(PIMAGE_DOS_HEADER)pImageData;
            }

            fSuccess = true;

        } while (false);

        if (isDisableWow64Fs)
        {
            ::Wow64RevertWow64FsRedirection(OldValue);
        }

        if (NULL != hModule)
        {
            ::FreeLibrary(hModule);
        }

        return fSuccess;
    }

    bool CPEHeader::LoadFromModule(HMODULE hModule)
    {
        Release();

        bool fSuccess = false;

        do
        {
            if (NULL == hModule)
            {
                break;
            }

            LPBYTE pHeader = (BYTE*)hModule;
            BYTE* pImageData = (BYTE*)((ULONG_PTR)pHeader & ~((ULONG_PTR)0x03));
            PIMAGE_DOS_HEADER pDosHeader = (PIMAGE_DOS_HEADER)pImageData;
            if (pDosHeader->e_magic != IMAGE_DOS_SIGNATURE)
            {
                break;
            }

            PIMAGE_NT_HEADERS pNtHeader = (IMAGE_NT_HEADERS*)((BYTE*)(pDosHeader)+(DWORD)(pDosHeader->e_lfanew));
            if (IMAGE_NT_SIGNATURE != pNtHeader->Signature)
            {
                break;
            }

            // 检查 是否为 32位程序可选头
            if (IMAGE_NT_OPTIONAL_HDR32_MAGIC == pNtHeader->OptionalHeader.Magic)
            {
                m_NtHeadersMagic = IMAGE_NT_OPTIONAL_HDR32_MAGIC;
                m_pNtHeaders32 = new (std::nothrow) IMAGE_NT_HEADERS32;
                if (m_pNtHeaders32)
                {
                    *m_pNtHeaders32 = *(PIMAGE_NT_HEADERS32)pNtHeader;
                }
            }
            // 检查 是否为 64位程序可选头
            else if (IMAGE_NT_OPTIONAL_HDR64_MAGIC == pNtHeader->OptionalHeader.Magic)
            {
                m_NtHeadersMagic = IMAGE_NT_OPTIONAL_HDR64_MAGIC;

                m_pNtHeaders64 = new (std::nothrow) IMAGE_NT_HEADERS64;
                if (m_pNtHeaders64)
                {
                    *m_pNtHeaders64 = *(PIMAGE_NT_HEADERS64)pNtHeader;
                }
            }
            else
            {
                break;
            }

            m_pDosHeader = new (std::nothrow) IMAGE_DOS_HEADER;
            if (m_pDosHeader)
            {
                *m_pDosHeader = *(PIMAGE_DOS_HEADER)pImageData;
            }

            fSuccess = true;

        } while (false);

        return fSuccess;
    }

    WORD CPEHeader::GetMachine()
    {
        if (IMAGE_NT_OPTIONAL_HDR32_MAGIC == m_NtHeadersMagic && m_pNtHeaders32)
        {
            return m_pNtHeaders32->FileHeader.Machine;
        }

        if (IMAGE_NT_OPTIONAL_HDR64_MAGIC == m_NtHeadersMagic && m_pNtHeaders64)
        {
            return m_pNtHeaders64->FileHeader.Machine;
        }

        return 0;
    }

    DWORD CPEHeader::GetSubsystemType()
    {
        if (IMAGE_NT_OPTIONAL_HDR32_MAGIC == m_NtHeadersMagic && m_pNtHeaders32)
        {
            return m_pNtHeaders32->OptionalHeader.Subsystem;
        }

        if (IMAGE_NT_OPTIONAL_HDR64_MAGIC == m_NtHeadersMagic && m_pNtHeaders64)
        {
            return m_pNtHeaders64->OptionalHeader.Subsystem;
        }

        return 0;
    }

    bool CPEHeader::IsX86()
    {
        return IMAGE_FILE_MACHINE_I386 == GetMachine();
    }

    bool CPEHeader::IsX64()
    {
        return IMAGE_FILE_MACHINE_AMD64 == GetMachine();
    }

    bool CPEHeader::IsARM32()
    {
        WORD wMachine = GetMachine();
        return wMachine >= IMAGE_FILE_MACHINE_ARM && wMachine <= IMAGE_FILE_MACHINE_ARMNT;
    }

    bool CPEHeader::IsARM64()
    {
        return IMAGE_FILE_MACHINE_ARM64 == GetMachine();
    }

    bool CPEHeader::IsWindowsGUI()
    {
        return IMAGE_SUBSYSTEM_WINDOWS_GUI == GetSubsystemType();
    }

    bool CPEHeader::IsWindowsCUI()
    {
        return IMAGE_SUBSYSTEM_WINDOWS_CUI == GetSubsystemType();
    }

    CVersionNumber::CVersionNumber()
        :m_nVer{ 0 }
    {
    };

    CVersionNumber::CVersionNumber(const _tstring& strVer)
        :
        m_nVer{ 0 }
    {
        _stscanf_s(strVer.c_str(), _T("%hd.%hd.%hd.%hd"), &m_nVer[0], &m_nVer[1], &m_nVer[2], &m_nVer[3]);
    }

    CVersionNumber::CVersionNumber(WORD v1, WORD v2, WORD v3, WORD v4)
        :m_nVer{ v1, v2, v3, v4 }
    {
    }

    CVersionNumber& CVersionNumber::operator = (const _tstring& strVer)
    {
        _stscanf_s(strVer.c_str(), _T("%hd.%hd.%hd.%hd"), &m_nVer[0], &m_nVer[1], &m_nVer[2], &m_nVer[3]);
        return *this;
    }

    int CVersionNumber::_Compare(const CVersionNumber& ref) const
    {
        for (int i = 0; i < _countof(m_nVer); i++)
        {
            if (m_nVer[i] != ref.m_nVer[i])
            {
                return (m_nVer[i] > ref.m_nVer[i] ? 1 : -1);
            }
        }

        return 0;
    }

    _tstring CVersionNumber::GetString() const
    {
        TCHAR szBuf[MAX_PATH] = { 0 };
        (void)::StringCchPrintf(szBuf, _countof(szBuf), _T("%hd.%hd.%hd.%hd"),
            m_nVer[0],
            m_nVer[1],
            m_nVer[2],
            m_nVer[3]
        );

        return szBuf;
    }

    bool CVersionNumber::IsEmpty() const
    {
        for (const auto& item : m_nVer)
        {
            if (0 != item)
            {
                return false;
            }
        }

        return true;
    }

    void CVersionNumber::Clear()
    {
        for (auto& item : m_nVer)
        {
            item = 0;
        }
    }

    bool CVersionNumber::operator == (const CVersionNumber& ref)
    {
        return _Compare(ref) == 0;
    }

    bool CVersionNumber::operator != (const CVersionNumber& ref)
    {
        return _Compare(ref) != 0;
    }

    bool CVersionNumber::operator < (const CVersionNumber& ref)
    {
        return _Compare(ref) < 0;
    }

    bool CVersionNumber::operator <= (const CVersionNumber& ref)
    {
        return _Compare(ref) <= 0;
    }

    bool CVersionNumber::operator > (const CVersionNumber& ref)
    {
        return _Compare(ref) > 0;
    }

    bool CVersionNumber::operator >= (const CVersionNumber& ref)
    {
        return _Compare(ref) >= 0;
    }

    //
    // @brief: 杀死进程节点
    // @param: procNode             进程节点
    // @ret: bool                   操作是否成功
    bool _KillProcessNode(const PROC_NODE& procNode);

    //
    // @brief: 挂起进程节点
    // @param: procNode             进程节点
    // @ret: bool                   检查结果
    bool _SuspendProcessNode(const PROC_NODE& procNode);

    //
    // @brief: 恢复进程节点
    // @param: procNode             进程节点
    // @ret: bool                   检查结果
    bool _ResumeProcessNode(const PROC_NODE& procNode);

    //
    // @brief: 获取指定进程的进程节点
    // @param: procInfos            进程信息
    // @param: dwPID                进程ID
    // @ret: PROC_LIST  进程信息
    PROC_NODE _GetProcessNode(
        const PROCESS_INFO_LIST& procInfos,
        DWORD dwPID
    );

    //
    // @brief: 获取指定进程的进程节点
    // @param: procInfos            进程信息
    // @param: dwPID                进程ID
    // @ret: PROC_LIST  进程信息
    PROC_NODE _GetProcessNode(
        const PROCESS_INFO_LIST& procInfos,
        const PROCESS_INFO& procInfo
    );

    //
    // @brief: 复制指定进程名的令牌
    // @param: strName              进程名
    // @param: dwSessionId          会话ID
    // @param: dwDesiredAccess      权限
    // @param: phToken              输出令牌缓冲
    // @ret: DWORD                  操作结果错误码
    DWORD _DuplicateProcessToken(
        const _tstring& strName,
        DWORD dwSessionId,
        DWORD dwDesiredAccess,
        PHANDLE phToken
    );

    // @brief: 创建带有UI权限的进程
    // @param: strExePath           可执行文件路径
    // @param: strCommand           命令参数
    // @param: strCurDir            程序的当前目录
    // @param: fUIAccess            是否带有UI权限
    // @ret: DWORD                  操作结果错误码
    DWORD _CreateProcessWithUIAccess(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir = _T(""),
        bool fUIAccess = true,
        bool bShow = true,
        bool bWait = true
    );

    // 枚举进程窗口
    void _EnumProcessWindows(WND_INFO_LIST& infos, HWND hWnd, DWORD dwPid);

    // 获取子窗口节点
    WND_NODE _GetWindowNode(HWND hWnd, MODULE_INFO_LIST& modules);

    bool EnablePrivileges(
        HANDLE hProcess,
        LPCTSTR lpPrivilegesName
    )
    {
        HANDLE hToken = NULL;
        LUID luidValue = { 0 };
        TOKEN_PRIVILEGES tokenPrivileges = { 0 };
        BOOL isSuccess = FALSE;

        do
        {
            if (!::OpenProcessToken(hProcess, TOKEN_ADJUST_PRIVILEGES, &hToken))
            {
                break;
            }

            if (!::LookupPrivilegeValue(NULL, lpPrivilegesName, &luidValue))
            {
                break;
            }

            tokenPrivileges.PrivilegeCount = 1;
            tokenPrivileges.Privileges[0].Luid = luidValue;
            tokenPrivileges.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;

            if (!::AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges, 0, NULL, NULL))
            {
                break;
            }

            isSuccess = true;

        } while (false);

        if (hToken)
        {
            ::CloseHandle(hToken);
        }

        return isSuccess;
    }

    // 操作系统 版本号
    // Windows 11               10.0*
    // Windows 10               10.0*
    // Windows Server 2022      10.0*
    // Windows Server 2019      10.0*
    // Windows Server 2016      10.0*
    // Windows 8.1              6.3*
    // Windows Server 2012 R2   6.3*
    // Windows 8                6.2
    // Windows Server 2012      6.2
    // Windows 7                6.1
    // Windows Server 2008 R2   6.1
    // Windows Server 2008      6.0
    // Windows Vista            6.0
    // Windows Server 2003 R2   5.2
    // Windows Server 2003      5.2
    // Windows XP 64 位版本     5.2
    // Windows XP               5.1
    // Windows 2000             5.0
    static bool _GetNtVersionNumbers(DWORD* pMajor, DWORD* pMinor, DWORD* pBuild)
    {
        typedef VOID(NTAPI* NTPROC)(DWORD* dwMajor, DWORD* dwMinor, DWORD* dwBuild);
        HMODULE hModule = NULL;
        static NTPROC ProcAddress = NULL;
        bool fResult = false;

        if (NULL == ProcAddress)
        {
            hModule = ::LoadLibrary(_T("ntdll.dll"));
            if (NULL != hModule)
            {
                ProcAddress = (NTPROC)::GetProcAddress(hModule, "RtlGetNtVersionNumbers");
            }
        }

        if (NULL != ProcAddress)
        {
            fResult = true;

            ProcAddress(pMajor, pMinor, pBuild);
            *pBuild &= 0xffff;
        }

        if (NULL != hModule)
        {
            ::FreeLibrary(hModule);
        }

        return fResult;
    }

    static bool IsWindowsXPOrServer2003()
    {
        DWORD dwMajor = 0;
        DWORD dwMinor = 0;
        DWORD dwBuild = 0;

        if (!_GetNtVersionNumbers(&dwMajor, &dwMinor, &dwBuild))
        {
            return false;
        }

        if (dwMajor == 5 && dwMinor >= 1)
        {
            return true;
        }

        return false;
    }

    static DWORD GetQueryAccess()
    {
        static DWORD dwDesiredAccess = PROCESS_QUERY_LIMITED_INFORMATION;
        if (0 != dwDesiredAccess)
        {
            return dwDesiredAccess;
        }

        if (IsWindowsXPOrServer2003())
        {
            dwDesiredAccess = PROCESS_QUERY_INFORMATION;
        }

        return dwDesiredAccess;
    }

    bool CreateProcessNormal(
        const _tstring& strExePath/* = _T("")*/,
        const _tstring& strCommand/* = _T("")*/,
        const _tstring& strCurDir/* = _T("")*/,
        bool bShow,
        bool bWait
    )
    {
        SECURITY_ATTRIBUTES   sa = { 0 };
        STARTUPINFO si = { 0 };
        PROCESS_INFORMATION pi = { 0 };

        sa.bInheritHandle = TRUE;
        sa.lpSecurityDescriptor = NULL;
        sa.nLength = sizeof(sa);

        si.cb = sizeof(STARTUPINFO);
        si.dwFlags = STARTF_USESHOWWINDOW;
        si.wShowWindow = bShow ? SW_SHOW : SW_HIDE;
        si.hStdInput = NULL;
        si.hStdOutput = NULL;
        si.hStdError = NULL;

        _tstring exePath = strExePath;
        _tstring exeCommand = strCommand;
        _tstring exeCurDir = strCurDir;

        LPCTSTR lpApplicationName = NULL;
        LPTSTR lpCommandLine = NULL;
        LPCTSTR lpCurrentDir = NULL;

        if (!exePath.empty())
        {
            lpApplicationName = exePath.c_str();
        }

        if (!exeCommand.empty())
        {
            lpCommandLine = (LPTSTR)exeCommand.c_str();
        }

        if (!exeCurDir.empty())
        {
            lpCurrentDir = exeCurDir.c_str();
        }

        if (!::CreateProcess(lpApplicationName, lpCommandLine, NULL, NULL, TRUE, NORMAL_PRIORITY_CLASS, NULL, lpCurrentDir, &si, &pi))
        {
            return false;
        }

        if (bWait)
        {
            ::WaitForSingleObject(pi.hProcess, INFINITE);
        }

        ::CloseHandle(pi.hProcess);
        ::CloseHandle(pi.hThread);

        return true;
    }

    _tstring GetPath(DWORD dwPID, bool bNtPath)
    {
        _tstring strPath;
        HANDLE hProcess = NULL;
        TCHAR szBuffer[MAX_PATH] = { 0 };
        DWORD dwSize = _countof(szBuffer);

        do
        {
            hProcess = ::OpenProcess(GetQueryAccess(), FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }

            // 句柄必须具有 PROCESS_QUERY_INFORMATION 或 PROCESS_QUERY_LIMITED_INFORMATION 访问权限。
            // Windows Server 2003 和 Windows XP: 句柄必须具有 PROCESS_QUERY_INFORMATION 访问权限。
            if (0 == ::GetProcessImageFileName(hProcess, szBuffer, dwSize))
            {
                break;
            }

            if (bNtPath)
            {
                strPath = DosPathToNtPath(szBuffer);
            }
            else
            {
                strPath = szBuffer;
            }

        } while (false);

        if (NULL != hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return strPath;
    }

    _tstring GetParentPath(DWORD dwPID, bool bNtPath)
    {
        return GetPath(GetParentProcessID(dwPID), bNtPath);
    }

    bool WaitForProcess(
        DWORD dwPID,
        DWORD dwMilliseconds/* = INFINITE*/
    )
    {
        HANDLE hProcess = NULL;
        bool fResult = false;

        hProcess = ::OpenProcess(SYNCHRONIZE, FALSE, dwPID);
        if (NULL == hProcess)
        {
            return false;
        }

        fResult = (WAIT_OBJECT_0 == ::WaitForSingleObject(hProcess, dwMilliseconds));
        ::CloseHandle(hProcess);

        return fResult;
    }

    PROC_SID_LIST GetProcessAccountSidList()
    {
        PROC_SID_LIST mapResult;
        PWTS_PROCESS_INFO pPi = NULL;
        DWORD dwCount = 0;
        do
        {
            if (!::WTSEnumerateProcesses(NULL, 0, 1, &pPi, &dwCount))
            {
                break;
            }

            for (DWORD i = 0; i < dwCount; i++)
            {
                PSID pUserSid = pPi[i].pUserSid;
                TCHAR szName[MAX_PATH] = { 0 };
                DWORD cchName = _countof(szName);
                TCHAR szDomainName[MAX_PATH] = { 0 };
                DWORD cchDomainName = _countof(szDomainName);
                SID_NAME_USE SidType = SidTypeUser;

                _tstring strSid;
                LPTSTR pStringSid = NULL;
                if (ConvertSidToStringSid(pUserSid, &pStringSid))
                {
                    strSid = pStringSid;
                    ::LocalFree(pStringSid);
                }

                // 先在缓冲中查找
                auto itFind = g_accountSidChche.find(strSid);
                if (itFind != g_accountSidChche.end())
                {
                    PROC_SID_INFO info = itFind->second;
                    info.SessionId = pPi[i].SessionId;
                    info.ProcessName = pPi[i].pProcessName;
                    info.ProcessId = pPi[i].ProcessId;

                    mapResult.emplace(pPi[i].ProcessId, itFind->second);
                    continue;
                }

                // 检索此 SID 的帐户的名称以及找到此 SID 的第一个域的名称
                if (::LookupAccountSid(NULL, pUserSid, szName, &cchName, szDomainName, &cchDomainName, &SidType))
                {
                    PROC_SID_INFO info;
                    info.SessionId = pPi[i].SessionId;
                    info.ProcessName = pPi[i].pProcessName;
                    info.ProcessId = pPi[i].ProcessId;

                    info.UserName = szName;
                    info.DomainName = szDomainName;

                    mapResult.emplace(pPi[i].ProcessId, info);
                    g_accountSidChche.emplace(strSid, info);
                }
            }

        } while (false);

        if (pPi)
        {
            ::WTSFreeMemory(pPi);
        }

        return mapResult;
    }

    PROC_NODE GetProcessNode(const PROCESS_INFO_LIST& procList, DWORD dwPID)
    {
        return _GetProcessNode(procList, dwPID);
    }

    PROC_NODE GetProcessNode(DWORD dwPID)
    {
        PROCESS_INFO_LIST procInfos = GetProcessList();
        return _GetProcessNode(procInfos, dwPID);
    }

    bool IsPathInProcessNode(const _tstring& strPath, DWORD dwPID)
    {
        if (strPath.empty())
        {
            return false;
        }

        PROCESS_INFO_LIST procInfos = GetProcessList();
        PROC_NODE procNode = _GetProcessNode(procInfos, dwPID);



        return false;
    }

    bool _IsPathInProcessNode(const PROC_NODE& node, const _tstring& strPath)
    {
        if (node.ProcInfo.FilePath == strPath)
        {
            return true;
        }

        for (const auto& item : node.NodeList)
        {
            if (_IsPathInProcessNode(item.second, strPath))
            {
                return true;
            }
        }

        return false;
    }

    PROC_NODE _GetProcessNode(
        const PROCESS_INFO_LIST& procInfos,
        DWORD dwPID
    )
    {
        PROC_NODE procNode;

        // 在列表中遍历 dwPID 的子进程
        for (const auto& item : procInfos)
        {
            const PROCESS_INFO& info = item.second;

            // 本身
            if (item.first == dwPID)
            {
                procNode.ProcInfo = info;
            }
            // 获取子进程
            else if (info.UniqueParentProcessId == dwPID
                )
            {
                PROC_NODE subNode = _GetProcessNode(procInfos, info);
                procNode.NodeList.emplace((DWORD)info.UniqueProcessId, subNode);
            }
        }

        return procNode;
    }
    PROC_NODE _GetProcessNode(
        const PROCESS_INFO_LIST& procInfos,
        const PROCESS_INFO& rootInfo
    )
    {
        PROC_NODE rootNode;
        rootNode.ProcInfo = rootInfo;
        for (const auto& item : procInfos)
        {
            const PROCESS_INFO& childInfo = item.second;

            if (0 == rootInfo.UniqueProcessId)
            {
                continue;
            }

            // 获取子进程
            if (
                childInfo.UniqueParentProcessId == rootInfo.UniqueProcessId &&
                childInfo.CreateTime >= rootNode.ProcInfo.CreateTime
                )
            {
                PROC_NODE childNode = _GetProcessNode(procInfos, childInfo);
                rootNode.NodeList.emplace((DWORD)childInfo.UniqueProcessId, childNode);
            }
        }

        return rootNode;
    }

    bool KillProcess(const _tstring& strName/* = _T("")*/)
    {
        bool fResult = true;
        PROCESS_INFO_LIST infos = GetProcessList(strName, 0, false);
        for (const auto& item : infos)
        {
            if (!KillProcess(item.first))
            {
                fResult = false;
            }
        }

        return fResult;
    }

    bool KillProcess(DWORD dwPID)
    {
        HANDLE hProcess = NULL;
        BOOL fSuccess = false;

        // 杀死进程
        hProcess = ::OpenProcess(PROCESS_TERMINATE, FALSE, dwPID);
        if (NULL == hProcess)
        {
            return false;
        }

        fSuccess = ::TerminateProcess(hProcess, 0);
        ::CloseHandle(hProcess);

        return fSuccess;
    }

    bool _KillProcessNode(const PROC_NODE& procNode)
    {
        HANDLE hProcess = NULL;
        BOOL fSuccess = false;

        if (GetCurrentProcessId() == procNode.ProcInfo.UniqueProcessId)
        {
            return true;
        }

        // 杀死主进程
        hProcess = ::OpenProcess(PROCESS_TERMINATE, FALSE, (DWORD)procNode.ProcInfo.UniqueProcessId);
        if (hProcess)
        {
            fSuccess = ::TerminateProcess(hProcess, 0);
            ::CloseHandle(hProcess);
        }

        // 杀死子进程
        for (auto item : procNode.NodeList)
        {
            _KillProcessNode(item.second);
        }

        return fSuccess;
    }

    bool KillProcessNode(DWORD dwPID)
    {
        return _KillProcessNode(GetProcessNode(dwPID));
    }

    using DRIVE_DOS_LIST = std::map<_tstring, _tstring>;
    DRIVE_DOS_LIST _GetDriveDosPathList()
    {
        DRIVE_DOS_LIST pathList;

        TCHAR szDriveStrings[MAX_PATH] = { 0 };
        TCHAR szDosBuf[MAX_PATH] = { 0 };
        LPTSTR pDriveStr = NULL;

        // 获取盘符名到缓冲
        if (::GetLogicalDriveStrings(_countof(szDriveStrings), szDriveStrings))
        {
            // 遍历盘符名
            for (int i = 0; i < _countof(szDriveStrings); i += 4)
            {
                pDriveStr = &szDriveStrings[i];
                pDriveStr[2] = _T('\0');

                // 查询盘符对应的DOS设备名称
                if (!::QueryDosDevice(pDriveStr, szDosBuf, _countof(szDosBuf)))
                {
                    break;
                }

                pathList.emplace(pDriveStr, szDosBuf);
            }
        }

        return pathList;
    }

    _tstring DosPathToNtPath(const _tstring& strPath)
    {
        _tstring strResultPath;
        TCHAR szDriveStrings[MAX_PATH] = { 0 };
        TCHAR szDosBuf[MAX_PATH] = { 0 };
        LPTSTR pDriveStr = NULL;

        do
        {
            // 获取盘符名到缓冲
            if (!::GetLogicalDriveStrings(_countof(szDriveStrings), szDriveStrings))
            {
                break;
            }

            // 遍历盘符名
            for (int i = 0; i < _countof(szDriveStrings); i += 4)
            {
                pDriveStr = &szDriveStrings[i];
                pDriveStr[2] = _T('\0');

                // 查询盘符对应的DOS设备名称
                DWORD dwCch = ::QueryDosDevice(pDriveStr, szDosBuf, _countof(szDosBuf));
                if (!dwCch)
                {
                    break;
                }

                // 结尾有 2 个 NULL, 减去 2 获得字符长度
                if (dwCch >= 2)
                {
                    dwCch -= 2;
                }

                if (strPath.size() < dwCch)
                {
                    break;
                }

                // 路径拼接
                if (_T('\\') == strPath[dwCch] && 0 == _tcsncmp(strPath.c_str(), szDosBuf, dwCch))
                {
                    strResultPath = pDriveStr;
                    strResultPath += &strPath[dwCch];
                    break;
                }
            }

        } while (false);

        return strResultPath;
    }

    _tstring NtPathToDosPath(const _tstring& strPath)
    {
        _tstring strResultPath;
        TCHAR szDriveStrings[MAX_PATH] = { 0 };
        TCHAR szDosBuf[MAX_PATH] = { 0 };

        do
        {
            // 获取盘符名到缓冲
            if (!::GetLogicalDriveStrings(_countof(szDriveStrings), szDriveStrings))
            {
                break;
            }

            // 遍历盘符名
            for (int i = 0; i < _countof(szDriveStrings); i += 4)
            {
                _tstring strLogicalDrive(&szDriveStrings[i], 2);

                // 查询盘符对应的DOS设备名称
                if (!::QueryDosDevice(strLogicalDrive.c_str(), szDosBuf, _countof(szDosBuf)))
                {
                    break;
                }

                // 对比路径前缀
                if (0 == _tcsncmp(strPath.c_str(), strLogicalDrive.c_str(), strLogicalDrive.size()))
                {
                    strResultPath = szDosBuf;
                    strResultPath += &strPath[strLogicalDrive.size()];
                    break;
                }
            }

        } while (false);

        return strResultPath;
    }

    typedef NTSTATUS(*_NtSuspendProcess)(HANDLE hProcess);
    _NtSuspendProcess NtSuspendProcess = NULL;

    bool IsSuspendProcess(DWORD dwPID)
    {
        return GetSuspendThreadCount(dwPID) > 1;
    }

    DWORD GetSuspendThreadCount(DWORD dwPID)
    {
        PROCESS_INFO info = GetProcessInfo(dwPID, false, false);
        return info.SuspendThreadCount;
    }

    bool SuspendProcess(DWORD dwPID)
    {
        HANDLE hProcess = NULL;
        HMODULE hModule = NULL;
        bool fResult = false;

        do
        {
            if (!NtSuspendProcess)
            {
                hModule = ::GetModuleHandle(_T("ntdll.dll"));
                if (NULL == hModule)
                {
                    break;
                }

                NtSuspendProcess = (_NtSuspendProcess)::GetProcAddress(hModule, "NtSuspendProcess");
                if (NULL == NtSuspendProcess)
                {
                    break;
                }

            }

            hProcess = ::OpenProcess(PROCESS_SUSPEND_RESUME, FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }
            fResult = (STATUS_SUCCESS == NtSuspendProcess(hProcess));

        } while (false);

        if (hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return fResult;
    }

    typedef NTSTATUS(*_NtResumeProcess)(HANDLE hProcess);
    _NtResumeProcess NtResumeProcess = NULL;

    bool ResumeProcess(DWORD dwPID)
    {
        HANDLE hProcess = NULL;
        HMODULE hModule = NULL;
        bool fResult = false;

        do
        {
            if (!NtResumeProcess)
            {
                hModule = ::GetModuleHandle(_T("ntdll.dll"));
                if (NULL == hModule)
                {
                    break;
                }

                NtResumeProcess = (_NtResumeProcess)::GetProcAddress(hModule, "NtResumeProcess");
                if (NULL == NtResumeProcess)
                {
                    break;
                }
            }

            hProcess = ::OpenProcess(PROCESS_SUSPEND_RESUME, FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }

            fResult = (STATUS_SUCCESS == NtResumeProcess(hProcess));

        } while (false);

        if (hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return fResult;
    }

    bool SuspendProcessNode(DWORD dwPID)
    {
        return _SuspendProcessNode(GetProcessNode(dwPID));
    }

    bool ResumeProcessNode(DWORD dwPID)
    {
        return _ResumeProcessNode(GetProcessNode(dwPID));
    }

    bool _SuspendProcessNode(const PROC_NODE& procNode)
    {
        bool fResult = false;

        do
        {
            // 暂停主进程
            if (!procNode.ProcInfo.SuspendThreadCount)
            {
                SuspendProcess((DWORD)procNode.ProcInfo.UniqueProcessId);
            }

            // 暂停子进程
            for (const auto& item : procNode.NodeList)
            {
                if (!_SuspendProcessNode(item.second))
                {
                    break;
                }
            }

            fResult = true;

        } while (false);

        return fResult;
    }

    bool _ResumeProcessNode(const PROC_NODE& procNode)
    {
        bool fResult = false;

        do
        {
            // 恢复主进程
            if (procNode.ProcInfo.SuspendThreadCount)
            {
                ResumeProcess((DWORD)procNode.ProcInfo.UniqueProcessId);
            }

            // 恢复子进程
            for (const auto& item : procNode.NodeList)
            {
                if (!_ResumeProcessNode(item.second))
                {
                    break;
                }
            }

            fResult = true;

        } while (false);

        return fResult;
    }

    bool IsWow64Process(DWORD dwPID)
    {
        HANDLE hProcess = NULL;
        bool fWow64 = false;

        do
        {
            hProcess = ::OpenProcess(GetQueryAccess(), FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }

            BOOL Wow64Process = FALSE;
            if (!::IsWow64Process(hProcess, &Wow64Process))
            {
                break;
            }

            fWow64 = Wow64Process;

        } while (false);

        if (NULL != hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return fWow64;
    }

    bool IsProcessX86(DWORD dwPID)
    {
        return true == IsWow64Process(dwPID);
    }

    bool IsProcessX64(DWORD dwPID)
    {
        return false == IsWow64Process(dwPID);
    }

    DWORD GetProcessHandleCount(DWORD dwPID)
    {
        HANDLE hProcess = NULL;
        DWORD dwHandleCount = 0;
        DWORD dwGdiCount = 0;
        DWORD dwUserCount = 0;

        do
        {
            // 打开进程
            hProcess = ::OpenProcess(GetQueryAccess(), FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }

            ::GetProcessHandleCount(hProcess, &dwHandleCount);
            dwGdiCount = GetGuiResources(hProcess, GR_GDIOBJECTS);
            dwUserCount = GetGuiResources(hProcess, GR_USEROBJECTS);

        } while (false);


        if (NULL != hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return dwHandleCount;
    }

    PROC_TOKEN_GROUPS _GetProcessTokenGroups(HANDLE hProcess)
    {
        PROC_TOKEN_GROUPS vResult;
        HANDLE hToken = NULL;
        PTOKEN_GROUPS pGroupInfo = NULL;
        SID_NAME_USE SidType = SidTypeUser;
        TCHAR szName[MAX_PATH] = { 0 };
        TCHAR szDomain[MAX_PATH] = { 0 };
        PSID pSID = NULL;
        SID_IDENTIFIER_AUTHORITY SIDAuth = SECURITY_NT_AUTHORITY;
        DWORD dwSize = 0;

        do
        {
            // 打开进程令牌
            if (!::OpenProcessToken(hProcess, TOKEN_QUERY, &hToken))
            {
                break;
            }

            // 获取令牌信息所需缓冲大小
            if (!::GetTokenInformation(hToken, TokenGroups, NULL, dwSize, &dwSize))
            {
                if (ERROR_INSUFFICIENT_BUFFER != ::GetLastError())
                {
                    break;
                }
            }

            // 分配缓冲
            pGroupInfo = (PTOKEN_GROUPS)::GlobalAlloc(GPTR, dwSize);
            if (NULL == pGroupInfo)
            {
                break;
            }

            // 获取令牌组信息
            if (!::GetTokenInformation(hToken, TokenGroups, pGroupInfo, dwSize, &dwSize))
            {
                break;
            }

            // 分配和初始化一个安全标识符
            if (!::AllocateAndInitializeSid(&SIDAuth, 2, SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS,
                0, 0, 0, 0, 0, 0,
                &pSID))
            {
                break;
            }

            // 检索SID信息
            for (DWORD i = 0; i < pGroupInfo->GroupCount; i++)
            {
                TOKEN_GROUPS_INFO info;

                LPTSTR pStringSid = NULL;
                if (ConvertSidToStringSid(pGroupInfo->Groups[i].Sid, &pStringSid))
                {
                    info.SID = pStringSid;
                    ::LocalFree(pStringSid);
                }

                // 先在缓冲中查找
                auto itFind = g_tokenGroupChche.find(info.SID);
                if (itFind != g_tokenGroupChche.end())
                {
                    vResult.push_back(itFind->second);
                    continue;
                }

                // 检索此 SID 的帐户的名称以及找到此 SID 的第一个域的名称
                dwSize = _countof(szName);
                if (!::LookupAccountSid(NULL, pGroupInfo->Groups[i].Sid, szName, &dwSize, szDomain, &dwSize, &SidType))
                {
                    if (ERROR_NONE_MAPPED != ::GetLastError())
                    {
                        break;
                    }

                    _tcscpy_s(szName, dwSize, _T("NONE_MAPPED"));
                }

                info.DomainName = szDomain;
                info.UserName = szName;
                info.Attributes = pGroupInfo->Groups[i].Attributes;
                vResult.push_back(info);

                // 放入缓冲
                g_tokenGroupChche.emplace(info.SID, info);
            }

        } while (false);

        if (pSID)
        {
            ::FreeSid(pSID);
        }

        if (pGroupInfo)
        {
            ::GlobalFree(pGroupInfo);
        }

        return vResult;
    }

    PROC_TOKEN_GROUPS GetProcessTokenGroups(DWORD dwPID)
    {
        PROC_TOKEN_GROUPS vResult;
        HANDLE hProcess = NULL;

        do
        {
            // 打开进程
            hProcess = ::OpenProcess(GetQueryAccess(), FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }

            vResult = _GetProcessTokenGroups(hProcess);

        } while (false);

        if (NULL != hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return vResult;
    }

    DWORD _DuplicateProcessToken(
        const _tstring& strName,
        DWORD dwSessionId,
        DWORD dwDesiredAccess,
        PHANDLE phToken
    )
    {
        PRIVILEGE_SET ps = { 0 };
        DWORD dwErr = ERROR_SUCCESS;
        DWORD dwPid = 0;
        BOOL fResult = FALSE;
        BOOL fFound = FALSE;

        ps.PrivilegeCount = 1;
        ps.Control = PRIVILEGE_SET_ALL_NECESSARY;

        do
        {
            PROC_NAME_LIST nameList = GetProcessNames();
            for (const auto& item : nameList)
            {
                if (0 == _tcsicmp(item.second.c_str(), strName.c_str()))
                {
                    dwPid = item.first;
                    fFound = true;
                    break;
                }
            }

            if (!fFound)
            {
                break;
            }

            if (!::LookupPrivilegeValue(NULL, SE_TCB_NAME, &ps.Privilege[0].Luid))
            {
                break;
            }

            HANDLE hProcess = NULL;
            HANDLE hToken = NULL;
            DWORD dwRetLen = 0;
            DWORD sid = 0;

            hProcess = ::OpenProcess(GetQueryAccess(), FALSE, dwPid);
            if (!hProcess)
            {
                break;
            }

            do
            {
                BOOL fTcb = FALSE;

                if (!::OpenProcessToken(hProcess, TOKEN_QUERY | TOKEN_DUPLICATE, &hToken))
                {
                    break;
                }

                if (!::PrivilegeCheck(hToken, &ps, &fTcb) && fTcb)
                {
                    break;
                }

                if (!::GetTokenInformation(hToken, TokenSessionId, &sid, sizeof(sid), &dwRetLen) && sid == dwSessionId)
                {
                    break;
                }

                if (!::DuplicateTokenEx(hToken, dwDesiredAccess, NULL, SecurityImpersonation, TokenImpersonation, phToken))
                {
                    break;
                }

                dwErr = ERROR_SUCCESS;

            } while (false);

            if (hToken)
            {
                ::CloseHandle(hToken);
            }

            if (hProcess)
            {
                ::CloseHandle(hProcess);
            }

            fResult = true;

        } while (false);

        if (!fFound)
        {
            return ERROR_NOT_FOUND;
        }

        if (!fResult)
        {
            dwErr = ::GetLastError();
        }

        return dwErr;
    }

    DWORD _CreateUIAccessToken(
        PHANDLE phToken
    )
    {
        DWORD dwErr = ERROR_SUCCESS;
        HANDLE hTokenSelf = NULL;
        HANDLE hWinlogonToken = NULL;
        BOOL fResult = FALSE;

        do
        {
            DWORD dwDesiredAccess = TOKEN_QUERY | TOKEN_DUPLICATE | TOKEN_ASSIGN_PRIMARY | TOKEN_ADJUST_DEFAULT;
            DWORD dwSessionId = 0;
            DWORD dwRetLen = 0;
            BOOL bUIAccess = TRUE;

            if (!::OpenProcessToken(::GetCurrentProcess(), TOKEN_QUERY | TOKEN_DUPLICATE, &hTokenSelf))
            {
                break;
            }

            if (!::GetTokenInformation(hTokenSelf, TokenSessionId, &dwSessionId, sizeof(dwSessionId), &dwRetLen))
            {
                break;
            }

            dwErr = _DuplicateProcessToken(_T("winlogon.exe"), dwSessionId, TOKEN_IMPERSONATE, &hWinlogonToken);
            if (ERROR_SUCCESS != dwErr)
            {
                break;
            }

            if (!::SetThreadToken(NULL, hWinlogonToken))
            {
                break;
            }

            if (!::DuplicateTokenEx(hTokenSelf, dwDesiredAccess, NULL, SecurityAnonymous, TokenPrimary, phToken))
            {
                break;
            }

            if (!::SetTokenInformation(*phToken, TokenUIAccess, &bUIAccess, sizeof(bUIAccess)))
            {
                break;
            }

            ::RevertToSelf();

            fResult = TRUE;

        } while (false);

        if (!fResult)
        {
            if (*phToken)
            {
                ::CloseHandle(*phToken);
                *phToken = NULL;
            }

            dwErr = ::GetLastError();
        }

        if (hWinlogonToken)
        {
            ::CloseHandle(hWinlogonToken);
        }

        if (hTokenSelf)
        {
            ::CloseHandle(hTokenSelf);
        }

        return dwErr;
    }

    DWORD _CreateProcessWithUIAccess(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir/* = _T("")*/,
        bool fUIAccess/* = true*/,
        bool bShow/* = true*/,
        bool bWait/* = true*/
    )
    {
        HANDLE hTokenUIAccess = NULL;
        DWORD dwErr = ERROR_SUCCESS;
        BOOL fResult = FALSE;
        _tstring exePath = strExePath;
        _tstring exeCommand = strCommand;
        _tstring exeCurDir = strCurDir;

        LPCTSTR lpApplicationName = NULL;
        LPTSTR lpCommandLine = NULL;
        LPCTSTR lpCurrentDir = NULL;

        if (!strExePath.empty())
        {
            lpApplicationName = exePath.c_str();
        }

        if (!strCommand.empty())
        {
            lpCommandLine = (LPTSTR)exeCommand.c_str();
        }

        if (!exeCurDir.empty())
        {
            lpCurrentDir = exeCurDir.c_str();
        }

        do
        {
            STARTUPINFO si = { 0 };
            PROCESS_INFORMATION pi = { 0 };

            dwErr = _CreateUIAccessToken(&hTokenUIAccess);
            if (ERROR_SUCCESS != dwErr)
            {
                break;
            }

            if (!fUIAccess)
            {
                BOOL fTokenInformation = FALSE;
                ::SetTokenInformation(hTokenUIAccess, TokenUIAccess, &fTokenInformation, sizeof(fTokenInformation));
            }

            si.cb = sizeof(STARTUPINFO);
            si.dwFlags = STARTF_USESHOWWINDOW;
            si.wShowWindow = bShow ? SW_SHOW : SW_HIDE;
            si.hStdInput = NULL;
            si.hStdOutput = NULL;
            si.hStdError = NULL;

            //::GetStartupInfo(&si);

            if (!::CreateProcessAsUser(hTokenUIAccess, lpApplicationName, lpCommandLine, NULL, NULL, FALSE, 0, NULL, lpCurrentDir, &si, &pi))
            {
                break;
            }

            if (bWait)
            {
                ::WaitForSingleObject(pi.hProcess, INFINITE);
            }

            ::CloseHandle(pi.hProcess);
            ::CloseHandle(pi.hThread);

        } while (false);

        if (!fResult)
        {
            dwErr = ::GetLastError();
        }

        if (hTokenUIAccess)
        {
            ::CloseHandle(hTokenUIAccess);
        }

        return dwErr;
    }

    bool CreateProcessWithPidToken(
        DWORD pid,
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir,
        bool bShow/* = true*/,
        bool bWait/* = true*/
    )
    {
        STARTUPINFOW si = { 0 };
        PROCESS_INFORMATION pi = { 0 };
        HANDLE hProcess = NULL;
        HANDLE hProcessToken = NULL;
        HANDLE hDuplicateToken = NULL;
        bool fResult = false;

        si.cb = sizeof(STARTUPINFO);
        si.dwFlags = STARTF_USESHOWWINDOW;
        si.wShowWindow = bShow ? SW_SHOW : SW_HIDE;
        si.hStdInput = NULL;
        si.hStdOutput = NULL;
        si.hStdError = NULL;

        std::wstring exePath = TStrToWStr(strExePath);
        std::wstring exeCommand = TStrToWStr(strCommand);
        std::wstring exeCurDir = TStrToWStr(strCurDir);

        LPCWSTR lpApplicationName = NULL;
        LPWSTR lpCommandLine = NULL;
        LPCWSTR lpCurrentDir = NULL;

        if (!exePath.empty())
        {
            lpApplicationName = exePath.c_str();
        }

        if (!exeCommand.empty())
        {
            lpCommandLine = (LPWSTR)exeCommand.c_str();
        }

        if (!exeCurDir.empty())
        {
            lpCurrentDir = exeCurDir.c_str();
        }

        do
        {
            // 打开进程句柄
            hProcess = ::OpenProcess(GetQueryAccess(), TRUE, pid);
            if (NULL == hProcess)
            {
                break;
            }

            // 打开进程令牌
            DWORD dwOpenDesiredAccess = TOKEN_DUPLICATE | TOKEN_ASSIGN_PRIMARY | TOKEN_QUERY;
            if (!::OpenProcessToken(hProcess, dwOpenDesiredAccess, &hProcessToken))
            {
                break;
            }

            // 模拟登录用户
            if (!::ImpersonateLoggedOnUser(hProcessToken))
            {
                break;
            }

            // 终止客户端应用程序的模拟
            ::RevertToSelf();

            // 创建一个复制现有令牌的新访问令牌
            DWORD dwDuplicateDesiredAccess = TOKEN_ADJUST_DEFAULT | TOKEN_ADJUST_SESSIONID | TOKEN_QUERY | TOKEN_DUPLICATE | TOKEN_ASSIGN_PRIMARY;
            if (!::DuplicateTokenEx(hProcessToken, dwDuplicateDesiredAccess, NULL, SecurityImpersonation, TokenPrimary, &hDuplicateToken))
            {
                break;
            }

            // 使用令牌创建进程
            // 调用 CreateProcessWithTokenW 的进程必须具有SE_IMPERSONATE_NAME特权。
            if (!::CreateProcessWithTokenW(hDuplicateToken, LOGON_WITH_PROFILE, lpApplicationName, lpCommandLine, 0, NULL, lpCurrentDir, &si, &pi))
            {
                break;
            }

            fResult = true;

            if (bWait)
            {
                ::WaitForSingleObject(pi.hProcess, INFINITE);
            }

            ::CloseHandle(pi.hProcess);
            ::CloseHandle(pi.hThread);

        } while (false);

        if (hDuplicateToken)
        {
            ::CloseHandle(hDuplicateToken);
        }

        if (hProcessToken)
        {
            ::CloseHandle(hProcessToken);
        }

        if (hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return fResult;
    }

    bool CreateProcessWithUIAccess(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir/* = _T("")*/,
        bool bShow/* = true*/,
        bool bWait/* = true*/
    )
    {
        return 0 == _CreateProcessWithUIAccess(strExePath, strCommand, strCurDir, true, bShow, bWait);
    }

    bool CreateProcessNoUIAccess(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir/* = _T("")*/,
        bool bShow/* = false*/,
        bool bWait/* = false*/
    )
    {
        return 0 == _CreateProcessWithUIAccess(strExePath, strCommand, strCurDir, false, bShow, bWait);
    }

    bool CreateProcessWithSystem(
        const _tstring& strExePath,
        const _tstring& strCommand,
        const _tstring& strCurDir/* = _T("")*/,
        bool bShow/* = true*/,
        bool bWait/* = true*/
    )
    {
        PROCESS_INFO_LIST infos = GetProcessList(_T("winlogon.exe"), 0);
        if (infos.empty())
        {
            return false;
        }

        return CreateProcessWithPidToken(infos.begin()->first, strExePath, strCommand, strCurDir, bShow, bWait);
    }

    BOOL CheckProcessUIAccess(
        DWORD dwPid,
        DWORD* pdwErr,
        DWORD* pfUIAccess
    )
    {
        HANDLE hProcess = NULL;
        HANDLE hToken = NULL;
        DWORD dwRetLen = 0;
        BOOL result = FALSE;

        do
        {
            hProcess = ::OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, dwPid);
            if (!hProcess)
            {
                break;
            }

            if (!::OpenProcessToken(hProcess, TOKEN_QUERY, &hToken))
            {
                break;
            }

            if (!::GetTokenInformation(hToken, TokenUIAccess, pfUIAccess, sizeof(*pfUIAccess), &dwRetLen))
            {
                break;
            }

            result = TRUE;

        } while (false);

        if (!result)
        {
            *pdwErr = ::GetLastError();
        }

        if (hProcess)
        {
            ::CloseHandle(hProcess);
        }

        if (hToken)
        {
            ::CloseHandle(hToken);
        }

        return result;
    }

    void _EnumProcessWindows(WND_INFO_LIST& infos, HWND hWnd, DWORD dwPid)
    {
        HWND childWindow = NULL;
        ULONG nMaxTimes = 0x4000;

        //使用 FindWindowEx 函数搜索子窗口
        while (nMaxTimes > 0 && (childWindow = ::FindWindowEx(hWnd, childWindow, NULL, NULL)))
        {
            ULONG processId = 0;
            ULONG threadId = 0;

            threadId = ::GetWindowThreadProcessId(childWindow, &processId);

            if (dwPid == processId || 0 == dwPid)
            {
                TCHAR szClassBuf[MAX_PATH] = { 0 };
                TCHAR szTextBuf[MAX_PATH] = { 0 };
                ::GetClassName(childWindow, szClassBuf, _countof(szClassBuf));
                ::GetWindowText(childWindow, szTextBuf, _countof(szTextBuf));

                WND_INFO info;
                info.hWnd = childWindow;
                info.dwPid = processId;
                info.dwTid = threadId;
                info.strClass = szClassBuf;
                info.strText = szTextBuf;

                infos.insert(std::make_pair(childWindow, info));
            }

            nMaxTimes--;
        }
    }

    WND_INFO_LIST GetProcessWindows(DWORD dwPid)
    {
        WND_INFO_LIST infos;

        //枚举 桌面窗口 的子窗口
        _EnumProcessWindows(infos, ::GetDesktopWindow(), dwPid);

        //枚举 仅消息窗口 的子窗口
        _EnumProcessWindows(infos, HWND_MESSAGE, dwPid);
        return infos;
    }

    WND_NODE _GetWindowNode(HWND hWnd, MODULE_INFO_LIST& modules)
    {
        TCHAR szClassBuf[MAX_PATH] = { 0 };
        TCHAR szTextBuf[MAX_PATH] = { 0 };
        ::GetClassName(hWnd, szClassBuf, _countof(szClassBuf));
        ::GetWindowText(hWnd, szTextBuf, _countof(szTextBuf));

        WND_NODE node;
        node.hWnd = hWnd;
        node.strClass = szClassBuf;
        node.strText = szTextBuf;
        node.dwTid = ::GetWindowThreadProcessId(hWnd, &node.dwPid);

        HMODULE hModule = (HMODULE)::GetWindowLongPtr(hWnd, GWLP_HINSTANCE);

        for (const auto& item : modules)
        {
            if (hModule == item.second.hModule)
            {
                node.strModule = item.second.strModule;
            }
        }

        HWND childWindow = NULL;
        ULONG nMaxTimes = 0x4000;

        //使用 FindWindowEx 函数搜索子窗口
        while (nMaxTimes > 0 && (childWindow = ::FindWindowEx(hWnd, childWindow, NULL, NULL)))
        {
            node.NodeList.push_back(_GetWindowNode(childWindow, modules));

            nMaxTimes--;
        }

        return node;
    }

    WND_NODE_LIST GetProcessWindowNodes(DWORD dwPid)
    {
        WND_NODE_LIST nodes;
        WND_INFO_LIST infos;
        MODULE_INFO_LIST moduleInfos = GetModuleList(dwPid);

        //枚举 桌面窗口 的子窗口
        _EnumProcessWindows(infos, ::GetDesktopWindow(), dwPid);

        //枚举 仅消息窗口 的子窗口
        _EnumProcessWindows(infos, HWND_MESSAGE, dwPid);

        for (const auto& item : infos)
        {
            WND_NODE node = _GetWindowNode(item.first, moduleInfos);
            nodes.insert(std::make_pair(item.first, node));
        }

        return nodes;
    }

#pragma pack(push)
#pragma pack(1)
    // 包含文件的版本信息。 此信息与语言和代码页无关
    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/vs-versioninfo
    typedef struct {
        WORD             wLength;       // VS_VERSIONINFO 结构的长度(以字节为单位),此长度不包括在 32 位边界上对齐任何后续版本资源数据的填充
        WORD             wValueLength;  // Value 成员的长度(以字节为单位)
        WORD             wType;         // 版本资源中的数据类型, 1: 资源包含文本数据 0: 版本资源包含二进制数据
        WCHAR            szKey[15];     // Unicode 字符串 L“VS_VERSION_INFO”
        WORD             Padding1;      // 在 32 位边界上对齐 Children 成员所需的任意或零个 WORD
        //VS_FIXEDFILEINFO Value
        //WORD             Padding2
        //WORD             Children
    } VS_VERSIONINFO, * PVS_VERSIONINFO;

#pragma pack(pop)

    LANG_INFO GetLanguageInfo(LANGID dwLang)
    {
        TCHAR szBuf[MAX_PATH] = { 0 };
        LANG_INFO langInfo;

        //获取当前线程 语言ID
        LANGID LangId = ::GetThreadUILanguage();

        ::GetLocaleInfo(dwLang, LOCALE_SNAME, szBuf, _countof(szBuf));

        langInfo.wLangId = dwLang;
        langInfo.strLocaleName = szBuf;

        ::SetThreadUILanguage(dwLang);
        ::VerLanguageName(dwLang, szBuf, _countof(szBuf));

        langInfo.strLangName = szBuf;

        // 恢复当前线程 语言ID
        ::SetThreadUILanguage(LangId);

        return langInfo;
    }

    LANG_LIST GetLangList()
    {
        LANG_LIST langList;

        ::EnumUILanguages([](LPTSTR  name, LONG_PTR lparam) -> BOOL {
            LANG_LIST* pList = (LANG_LIST*)lparam;
            LANGID LangId = (LANGID)_tcstoul(name, nullptr, 16);

            LANG_INFO langInfo = GetLanguageInfo(LangId);
            pList->emplace(LangId, langInfo);

            return TRUE;

            },
            MUI_LANGUAGE_ID,
            (LONG_PTR)&langList
        );

        return langList;
    }

    std::wstring WStrFromUnicodeString(PUNICODE_STRING pString)
    {
        if (!pString->Buffer)
        {
            return std::wstring();
        }

        return std::wstring(pString->Buffer, pString->Length / sizeof(wchar_t));
    }

#pragma pack(push)
#pragma pack(1)
    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/newheader
    typedef struct {
        WORD Reserved;                  //保留;必须为零
        WORD ResType;                   //资源类型 1: RES_ICON    2: RES_CURSOR
        WORD ResCount;                  //资源组中的图标或游标组件数
    } ICON_GROUP_HEADER, * LPICON_GROUP_HEADER;

    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/resdir
    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/iconresdir
    typedef struct {
        BYTE Width;                     //图标的宽度(以像素为单位)。 可接受的值为 16、32 和 64
        BYTE Height;                    //图标的高度(以像素为单位)。 可接受的值为 16、32 和 64
        BYTE ColorCount;                //图标中的颜色数。 可接受的值为 2、8 和 16。
        BYTE reserved;                  //保留;必须设置为与图标文件标头中保留字段的值相同的值
        WORD Planes;                    //图标或光标位图中的颜色平面数
        WORD BitCount;                  //图标或光标位图中每像素的位数
        DWORD BytesInRes;               //资源的大小(以字节为单位)
        WORD IconId;                    //具有唯一序号标识符的图标或光标
    } ICON_ENTRY, * LPICON_ENTRY;

    typedef struct {
        ICON_GROUP_HEADER Header;    //图标组头部
        ICON_ENTRY    IconEntry[1];    //单个图标信息
    }ICON_GROUP_DIR, * LPICON_GROUP_DIR;

    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/var-str
    typedef struct {
        WORD  wLength;                  // Var 结构的长度(以字节为单位)
        WORD  wValueLength;             // Value 成员的长度(以字节为单位)
        WORD  wType;                    // 版本资源中的数据类型, 1: 资源包含文本数据 0: 版本资源包含二进制数据
        WCHAR szKey[12];                // Unicode 字符串 L“Translation”
        WORD  Padding;                  // 在 32 位边界上对齐 Value 成员所需的任意或零个 WORD

        struct {
            WORD LanguageID;            //低序字: Microsoft 语言标识符
            WORD CodePageID;            //高序字: IBM 代码页码
        }Value[1];
    } Var;

    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/varfileinfo
    typedef struct {
        WORD  wLength;                  // 整个 VarFileInfo 块(包括 Children 成员指示的所有结构)的长度(以字节为单位)
        WORD  wValueLength;             // 此成员始终等于零
        WORD  wType;                    // 版本资源中的数据类型, 1: 资源包含文本数据 0: 版本资源包含二进制数据
        WCHAR szKey[12];                // Unicode 字符串 L“VarFileInfo”
        WORD  Padding;                  // 在 32 位边界上对齐 Children 成员所需的任意或零个 WORD
        Var   Children[1];              // 通常包含应用程序或 DLL 支持的语言列表
    } VarFileInfo;

    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/string-str
    typedef struct {
        WORD  wLength;                  // 此 字符串 结构的长度(以字节为单位)
        WORD  wValueLength;             // Value 成员的大小(以字为单位)
        WORD  wType;                    // 版本资源中的数据类型, 1: 资源包含文本数据 0: 版本资源包含二进制数据
        WCHAR szKey[1];                 // 任意长度的 Unicode 字符串
        WORD  Padding;                  // 在 32 位边界上对齐 Value 成员所需的任意或零个 WORD
        WORD  Value[1];                 // 以零结尾的字符串
    } String;

    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/stringtable
    typedef struct {
        WORD   wLength;                 // 此 StringTable 结构的长度(以字节为单位),包括 Children 成员指示的所有结构
        WORD   wValueLength;            // 此成员始终等于零
        WORD   wType;                   // 版本资源中的数据类型, 1: 资源包含文本数据 0: 版本资源包含二进制数据
        WCHAR  szKey[8];                // 存储为 Unicode 字符串的 8 位十六进制数
        WORD   Padding;                 // 在 32 位边界上对齐 Children 成员所需的任意或零个 WORD
        String Children[1];             // 一个或多个 String 结构的数组
    } StringTable;

    // https://learn.microsoft.com/zh-cn/windows/win32/menurc/stringfileinfo
    typedef struct {
        WORD        wLength;            // 整个 StringFileInfo 块的长度(以字节为单位)
        WORD        wValueLength;       // 此成员始终等于零
        WORD        wType;              // 版本资源中的数据类型, 1: 资源包含文本数据 0: 版本资源包含二进制数据
        WCHAR       szKey[14];          // Unicode 字符串 L“StringFileInfo”
        WORD        Padding;            // 在 32 位边界上对齐 Children 成员所需的任意或零个 WORD
        StringTable Children[1];        // 一个或多个 StringTable 结构的数组
    } StringFileInfo;

#pragma pack(pop)

    inline LPBYTE _GetAlignAddr(
        LPCVOID lpBase,
        LPCVOID lpAddr,
        DWORD dwAlign
    )
    {
        DWORD_PTR dwOffset = 0;
        if (dwAlign)
        {
            dwOffset = (DWORD_PTR)lpBase & (dwAlign - 1);
        }

        DWORD_PTR dwPadding = ((DWORD_PTR)lpAddr - dwOffset) % dwAlign;
        return dwPadding ? (LPBYTE)lpAddr + (dwAlign - dwPadding) : (LPBYTE)lpAddr;
    }

    using VER_STRING_INFO = std::map<_tstring, _tstring>;

    typedef struct _PE_FILE_VERSION_INFO
    {
        _tstring                strLocaleName;              // 区域名
        _tstring                strLangName;                // 语言名
        LANGANDCODEPAGE         LangAndCode;                // 语言与区域码
        VS_FIXEDFILEINFO        FixedFileInfo;              // 固定文件信息
        VER_STRING_INFO         VerString;                  // 版本信息

        _PE_FILE_VERSION_INFO() : FixedFileInfo{ 0 } {}
    }PE_FILE_VERSION_INFO;

    using VER_LANG_ID_INFO = std::map<DWORD, PE_FILE_VERSION_INFO>;

    VER_LANG_ID_INFO LoadResourceVersion(HMODULE hModule, const LANG_LIST& langList)
    {
        VER_LANG_ID_INFO verLangInfo;
        std::vector<LPTSTR> vResourceIds;

        // 枚举指定索引的资源
        ::EnumResourceNames(hModule, RT_VERSION, [](
            _In_opt_ HMODULE hModule,
            _In_ LPCTSTR lpType,
            _In_ LPTSTR lpName,
            _In_ LONG_PTR lParam
            ) -> BOOL {

                UNREFERENCED_PARAMETER(hModule);
                UNREFERENCED_PARAMETER(lpType);

                std::vector<LPTSTR>* pOut = (std::vector<LPTSTR>*)lParam;
                pOut->push_back(lpName);
                return TRUE;

            }, (LPARAM)&vResourceIds);

        auto _GetVersion = [&hModule](HRSRC hRsrc, const LANG_LIST& langList, VER_LANG_ID_INFO& verLangInfo, VER_LANG_ID_INFO& allVerLangInfo) {

            HGLOBAL hGlobal = ::LoadResource(hModule, hRsrc);
            if (!hGlobal)
            {
                return;
            }

            //DWORD dwResourceSize = ::SizeofResource(hModule, hRsrc);
            LPVOID lpResourceData = ::LockResource(hGlobal);
            if (lpResourceData)
            {
                VS_FIXEDFILEINFO FixedFileInfo = { 0 };
                PVS_VERSIONINFO lpVersion = (PVS_VERSIONINFO)lpResourceData;
                LPBYTE lpVerBeg = (LPBYTE)lpVersion;

                // 存在 VS_FIXEDFILEINFO 信息
                if (0 != lpVersion->wValueLength)
                {
                    VS_FIXEDFILEINFO* pFixedFileInfo = (VS_FIXEDFILEINFO*)((LPBYTE)lpVersion + sizeof(VS_VERSIONINFO));
                    pFixedFileInfo = (VS_FIXEDFILEINFO*)_GetAlignAddr(lpResourceData, pFixedFileInfo, sizeof(DWORD));
                    FixedFileInfo = *pFixedFileInfo;
                    lpVerBeg = (LPBYTE)lpVerBeg + sizeof(VS_VERSIONINFO) + lpVersion->wValueLength;
                }

                lpVerBeg = _GetAlignAddr(lpResourceData, (LPBYTE)lpVerBeg, sizeof(DWORD));
                LPBYTE lpVerEnd = (LPBYTE)lpVersion + lpVersion->wLength;

                // 解析数据
                while (lpVerBeg < lpVerEnd)
                {
                    StringFileInfo* pStringFileInfo = (StringFileInfo*)_GetAlignAddr(lpResourceData, lpVerBeg, sizeof(DWORD));
                    if (0 == pStringFileInfo->wLength)
                    {
                        break;
                    }

                    // 解析 "StringFileInfo" 块
                    if (0 == _wcsnicmp(L"StringFileInfo", pStringFileInfo->szKey, 14))
                    {
                        LPBYTE lpStringFileInfoBeg = (LPBYTE)pStringFileInfo;
                        LPBYTE lpStringFileInfoEnd = (LPBYTE)pStringFileInfo + pStringFileInfo->wLength;
                        lpStringFileInfoBeg = (LPBYTE)(pStringFileInfo->Children);

                        while (lpStringFileInfoBeg < lpStringFileInfoEnd)
                        {
                            StringTable* pStringTable = (StringTable*)lpStringFileInfoBeg;
                            if (0 == pStringTable->wLength)
                            {
                                break;
                            }

                            DWORD dwValue = 0;
                            _tstring strLangCode = WStrToTStr(std::wstring(pStringTable->szKey, _countof(pStringTable->szKey)));
                            ::_stscanf_s(strLangCode.c_str(), _T("%08X"), &dwValue);

                            PE_FILE_VERSION_INFO verInfo;
                            verInfo.FixedFileInfo = FixedFileInfo;

                            // 语言
                            verInfo.LangAndCode.wCodePage = LOWORD(dwValue);
                            verInfo.LangAndCode.wLangId = HIWORD(dwValue);

                            // 语言名
                            LANG_INFO langInfo = GetLanguageInfo(verInfo.LangAndCode.wLangId);
                            verInfo.strLocaleName = langInfo.strLocaleName;
                            verInfo.strLangName = langInfo.strLangName;

                            // 解析字符串
                            LPBYTE lpStringBeg = (LPBYTE)pStringTable->Children;
                            LPBYTE lpStringEnd = (LPBYTE)pStringTable + pStringTable->wLength;
                            while (lpStringBeg < lpStringEnd)
                            {
                                const String* pString = (String*)lpStringBeg;
                                if (!pString->wLength)
                                {
                                    break;
                                }

                                //值名
                                std::wstring strKey = pString->szKey;

                                //值数据
                                LPCWSTR lpStrValue = pString->szKey + strKey.size() + 1;

                                //值数据位置
                                lpStrValue = (LPCWSTR)_GetAlignAddr(lpResourceData, lpStrValue, sizeof(DWORD));

                                //字符串类型
                                if (1 == pString->wType)
                                {
                                    WORD wLength = pString->wValueLength;
                                    if (wLength > 0 && L'\0' == lpStrValue[wLength - 1])
                                    {
                                        wLength--;
                                    }
                                    std::wstring strValue = std::wstring(lpStrValue, wLength);
                                    verInfo.VerString.emplace(WStrToTStr(pString->szKey), WStrToTStr(strValue));
                                }

                                lpStringBeg = _GetAlignAddr(lpResourceData, lpStringBeg + pString->wLength, sizeof(DWORD));
                            }

                            if (langList.empty() || langList.end() != langList.find(verInfo.LangAndCode.wLangId))
                            {
                                verLangInfo.emplace(verInfo.LangAndCode.wLangId, verInfo);
                            }

                            allVerLangInfo.emplace(verInfo.LangAndCode.wLangId, verInfo);

                            lpStringFileInfoBeg = _GetAlignAddr(lpResourceData, (LPBYTE)pStringTable + pStringTable->wLength, sizeof(DWORD));
                        }
                    }
                    // 解析 "VarFileInfo" 块
                    else if (0 == _wcsnicmp(L"VarFileInfo", pStringFileInfo->szKey, 11))
                    {
                        VarFileInfo* pVerFileInfo = (VarFileInfo*)_GetAlignAddr(lpResourceData, pStringFileInfo, sizeof(DWORD));
                        Var* pVar = (Var*)pVerFileInfo->Children;
                        if (0 == _wcsnicmp(L"Translation", pVar->szKey, 11))
                        {
                            for (DWORD i = 0; i < pVar->wValueLength / sizeof(DWORD); i++)
                            {
                                LANGANDCODEPAGE transInfo;
                                transInfo.wCodePage = pVar->Value[i].CodePageID;
                                transInfo.wLangId = pVar->Value[i].LanguageID;
                            }
                        }
                    }

                    lpVerBeg = _GetAlignAddr(lpResourceData, lpVerBeg + pStringFileInfo->wLength, sizeof(DWORD));
                }
            }
            };

        //从指定语言列表遍历获取资源版本信息
        for (const auto& resId : vResourceIds)
        {
            VER_LANG_ID_INFO allVerLangInfo;

            for (const auto& item : langList)
            {
                HRSRC hRsrc = ::FindResourceEx(hModule, RT_VERSION, (LPCTSTR)resId, (WORD)item.first);
                if (!hRsrc)
                {
                    continue;
                }

                _GetVersion(hRsrc, langList, verLangInfo, allVerLangInfo);
            }

            // 没有找到指定语言版本信息, 则使用存在的版本信息
            if (verLangInfo.empty())
            {
                verLangInfo = allVerLangInfo;
            }
        }

        return verLangInfo;
    }

    VERSION_INFO_LIST GetResourceVersion(HMODULE hModule, const LANG_LIST& langList)
    {
        VERSION_INFO_LIST infoResult;
        VER_LANG_ID_INFO fileInfo = LoadResourceVersion(hModule, langList);

        for (const auto& item : fileInfo)
        {
            VERSION_INFO verInfo;

            auto _QueryInfo = [](const VER_STRING_INFO& StrList, const _tstring name) -> _tstring {

                auto itFind = StrList.find(name);
                if (StrList.end() != itFind)
                {
                    return itFind->second;
                }

                return _tstring();

                };

            const VER_STRING_INFO& VerString = item.second.VerString;

            verInfo.strComments = _QueryInfo(VerString, _T("Comments"));
            verInfo.strInternalName = _QueryInfo(VerString, _T("InternalName"));
            verInfo.strProductName = _QueryInfo(VerString, _T("ProductName"));
            verInfo.strCompanyName = _QueryInfo(VerString, _T("CompanyName"));
            verInfo.strLegalCopyright = _QueryInfo(VerString, _T("LegalCopyright"));
            verInfo.strProductVersion = _QueryInfo(VerString, _T("ProductVersion"));
            verInfo.strFileDescription = _QueryInfo(VerString, _T("FileDescription"));
            verInfo.strLegalTrademarks = _QueryInfo(VerString, _T("LegalTrademarks"));
            verInfo.strPrivateBuild = _QueryInfo(VerString, _T("PrivateBuild"));
            verInfo.strFileVersion = _QueryInfo(VerString, _T("FileVersion"));
            verInfo.strOriginalFilename = _QueryInfo(VerString, _T("OriginalFilename"));
            verInfo.strSpecialBuild = _QueryInfo(VerString, _T("SpecialBuild"));

            verInfo.vsFixedInfo = *(VS_VER_FIXEDFILEINFO*)(&item.second.LangAndCode);
            verInfo.langAndCodePage = item.second.LangAndCode;

            const VS_VER_FIXEDFILEINFO& vsFixedInfo = verInfo.vsFixedInfo;

            // 获取版本字符串回调
            auto _GetVersionStr = [](VERSON_NUMBER hi, VERSON_NUMBER lo) -> _tstring {
                TCHAR szBuf[MAX_PATH] = { 0 };
                (void)::StringCchPrintf(szBuf, _countof(szBuf), _T("%hd.%hd.%hd.%hd"),
                    hi.Version.wHigh,
                    hi.Version.wLow,
                    lo.Version.wHigh,
                    lo.Version.wLow
                );

                return szBuf;

                };

            verInfo.strFileVersionEx = _GetVersionStr(vsFixedInfo.dwFileVersionMS, vsFixedInfo.dwFileVersionLS);
            verInfo.strProductVersionEx = _GetVersionStr(vsFixedInfo.dwProductVersionMS, vsFixedInfo.dwProductVersionLS);

            verInfo.wLangId = (LANGID)item.first;

            auto itLang = langList.find((WORD)item.first);
            if (itLang != langList.end())
            {
                verInfo.strLocaleName = itLang->second.strLocaleName;
                verInfo.strLangName = itLang->second.strLangName;
            }

            verInfo.FileVerNumber = verInfo.strFileVersionEx.c_str();
            verInfo.ProductVerNumber = verInfo.strProductVersionEx.c_str();

            infoResult.emplace(item.first, verInfo);
        }

        return infoResult;
    }

    PROC_NAME_LIST GetProcessNames()
    {
        PROC_NAME_LIST mapResult;
        PWTS_PROCESS_INFO pPi = NULL;
        DWORD dwCount = 0;
        do
        {
            if (!::WTSEnumerateProcesses(NULL, 0, 1, &pPi, &dwCount))
            {
                break;
            }

            for (DWORD i = 0; i < dwCount; i++)
            {
                mapResult.emplace(pPi[i].ProcessId, pPi[i].pProcessName);
            }

        } while (false);

        if (pPi)
        {
            ::WTSFreeMemory(pPi);
        }

        return mapResult;
    }

    _tstring GetProcessPath(DWORD dwPID)
    {
        _tstring strResult;
        HANDLE hProcess = NULL;
        DWORD dwQueryAccess = GetQueryAccess();
        DRIVE_DOS_LIST DriveDosPathList = _GetDriveDosPathList();

        do
        {
            TCHAR szBuffer[MAX_PATH] = { 0 };

            // 打开进程
            hProcess = ::OpenProcess(dwQueryAccess, FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }

            // 句柄必须具有 PROCESS_QUERY_INFORMATION 或 PROCESS_QUERY_LIMITED_INFORMATION 访问权限。
            // Windows Server 2003 和 Windows XP: 句柄必须具有 PROCESS_QUERY_INFORMATION 访问权限。
            if (0 != ::GetProcessImageFileName(hProcess, szBuffer, _countof(szBuffer)))
            {
                for (const auto& item : DriveDosPathList)
                {
                    if (_T('\\') != szBuffer[item.second.size()])
                    {
                        continue;
                    }

                    if (0 == _tcsncmp(item.second.c_str(), szBuffer, item.second.size()))
                    {
                        strResult = item.first + &szBuffer[item.second.size()];
                        break;
                    }
                }
            }
        } while (false);

        return strResult;
    }

    _tstring GetProcessDir(DWORD dwPID)
    {
        _tstring strResult = GetProcessPath(dwPID);
        size_t nIndex = strResult.find_last_of(_T('\\'));
        if (nIndex != _tstring::npos)
        {
            strResult = strResult.substr(0, nIndex);
        }

        return strResult;
    }

    _tstring GetProcessName(DWORD dwPID)
    {
        _tstring strResult = GetProcessPath(dwPID);

        if (!strResult.empty())
        {
            size_t nIndex = strResult.find_last_of(_T('\\'));
            if (nIndex != _tstring::npos)
            {
                strResult = strResult.substr(nIndex + 1);
            }
        }

        return strResult;
    }

    typedef struct _RTL_PROCESS_MODULE_INFORMATION
    {
        PVOID Section;
        PVOID MappedBase;
        PVOID ImageBase;
        ULONG ImageSize;
        ULONG Flags;
        USHORT LoadOrderIndex;
        USHORT InitOrderIndex;
        USHORT LoadCount;
        USHORT OffsetToFileName;
        UCHAR FullPathName[256];
    } RTL_PROCESS_MODULE_INFORMATION, * PRTL_PROCESS_MODULE_INFORMATION;

    typedef struct _RTL_PROCESS_MODULES
    {
        ULONG NumberOfModules;
        _Field_size_(NumberOfModules) RTL_PROCESS_MODULE_INFORMATION Modules[1];
    } RTL_PROCESS_MODULES, * PRTL_PROCESS_MODULES;

    _tstring GetKernelFileName()
    {
        TCHAR szRoot[MAX_PATH] = { 0 };
        _tstring strResult;

        ::GetSystemWindowsDirectory(szRoot, _countof(szRoot));
        strResult = szRoot;

        NTSTATUS ntStatus;
        PRTL_PROCESS_MODULES pProcessModules = NULL;
        ULONG SystemInformationLength = 0;
        ULONG ReturnLength = 0;

        do
        {
            ntStatus = NtQuerySystemInformation(
                SystemModuleInformation,
                NULL,
                0,
                &ReturnLength
            );

            if (STATUS_INFO_LENGTH_MISMATCH != ntStatus)
            {
                break;
            }

            SystemInformationLength = ReturnLength;
            pProcessModules = (PRTL_PROCESS_MODULES)::HeapAlloc(
                ::GetProcessHeap(),
                HEAP_ZERO_MEMORY,
                SystemInformationLength
            );
            if (!pProcessModules)
            {
                break;
            }

            ntStatus = NtQuerySystemInformation(
                SystemModuleInformation,
                pProcessModules,
                SystemInformationLength,
                &ReturnLength
            );
            if (STATUS_SUCCESS != ntStatus)
            {
                break;
            }

            _tstring strPath = U8StrToTStr(std::string((char*)pProcessModules->Modules[0].FullPathName));
            if (0 == _tcsnicmp(_T(R"(\SystemRoot)"), strPath.c_str(), 11))
            {
                strResult += &strPath[11];
            }

        } while (false);

        if (pProcessModules)
        {
            ::HeapFree(::GetProcessHeap(), 0, pProcessModules);
        }

        return strResult;
    }

    MODULE_INFO_LIST QuerySystemModuleInformation()
    {
        MODULE_INFO_LIST infoList;
        PRTL_PROCESS_MODULES pModules = NULL;
        NTSTATUS ntStatus = STATUS_SUCCESS;
        ULONG uDataLength = 0;
        ULONG uReturnLength = 0;

        do
        {
            ntStatus = NtQuerySystemInformation(
                SystemModuleInformation,
                NULL,
                0,
                &uReturnLength
            );
            if (STATUS_INFO_LENGTH_MISMATCH != ntStatus)
            {
                break;
            }

            uDataLength = uReturnLength * 2;

            pModules = (PRTL_PROCESS_MODULES)::HeapAlloc(
                ::GetProcessHeap(),
                HEAP_ZERO_MEMORY,
                uDataLength
            );
            if (!pModules)
            {
                break;
            }

            ntStatus = NtQuerySystemInformation(
                SystemModuleInformation,
                pModules,
                uDataLength,
                &uReturnLength
            );
            if (STATUS_SUCCESS != ntStatus)
            {
                break;
            }

            for (ULONG i = 0; i < pModules->NumberOfModules; i++)
            {
                PRTL_PROCESS_MODULE_INFORMATION pMod = &(pModules->Modules[i]);
                pMod = &(pModules->Modules[i]);

                MODULE_INFO info;

                info.strExePath = U8StrToTStr((char*)pMod->FullPathName);

                info.modBaseSize = pMod->ImageSize;
                info.modBaseAddr = pMod->ImageBase;
                info.GlblcntUsage = pMod->LoadCount;
                info.hModule = (HMODULE)pMod->MappedBase;

                infoList.emplace(info.strExePath, info);
            }

            break;

        } while (false);

        return infoList;
    }

    PROCESS_INFO_LIST GetProcessList1(
        const _tstring& strName/* = _T("")*/,
        DWORD dwPID/* = 0*/,
        bool fModule/* = false*/,
        bool fMultilingual/* = true*/,
        const PROC_PATH_SET& onlyPathSet/* = {}*/
    )
    {
        PROCESS_INFO_LIST infoList;

        PROC_SID_LIST mapResult;
        PWTS_PROCESS_INFO pPi = NULL;
        DWORD dwCount = 0;
        DWORD dwQueryAccess = GetQueryAccess();

        DRIVE_DOS_LIST DriveDosPathList = _GetDriveDosPathList();
        LANGID LangId = ::GetThreadUILanguage();
        LANG_LIST langTempList = GetLangList();
        LANG_LIST langList;

        if (!fMultilingual)
        {
            auto itFind = langTempList.find(LangId);
            if (langTempList.end() != itFind)
            {
                langList.emplace(*itFind);
            }

            itFind = langTempList.find(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US));
            if (langTempList.end() != itFind)
            {
                langList.emplace(*itFind);
            }
        }
        else
        {
            langList = std::move(langTempList);
        }

        do
        {
            if (!::WTSEnumerateProcesses(NULL, 0, 1, &pPi, &dwCount))
            {
                break;
            }

            for (DWORD i = 0; i < dwCount; i++)
            {
                HANDLE hProcess = NULL;
                bool fSkip = false;
                PROCESS_INFO info;

                info.UniqueProcessId = pPi[i].ProcessId;

                _tstring strImageName = pPi[i].pProcessName;
                DWORD dwProcessId = pPi[i].ProcessId;

                if ((0 == dwPID || dwPID == dwProcessId) &&
                    (strName.empty() || (0 == _tcsicmp(strName.c_str(), strImageName.c_str())))
                    )
                {

                    do
                    {
                        TCHAR szBuffer[MAX_PATH] = { 0 };

                        // 打开进程
                        hProcess = ::OpenProcess(dwQueryAccess, FALSE, pPi[i].ProcessId);
                        if (NULL == hProcess)
                        {
                            if (!onlyPathSet.empty())
                            {
                                fSkip = true;
                            }

                            break;
                        }

                        // 进程句柄信息
                        ::GetProcessHandleCount(hProcess, (LPDWORD)&info.HandleCount);
                        info.GdiCount = ::GetGuiResources(hProcess, GR_GDIOBJECTS);
                        info.UserCount = ::GetGuiResources(hProcess, GR_USEROBJECTS);

                        // 句柄必须具有 PROCESS_QUERY_INFORMATION 或 PROCESS_QUERY_LIMITED_INFORMATION 访问权限。
                        // Windows Server 2003 和 Windows XP: 句柄必须具有 PROCESS_QUERY_INFORMATION 访问权限。
                        if (0 != ::GetProcessImageFileName(hProcess, szBuffer, _countof(szBuffer)))
                        {
                            bool fFind = false;
                            for (const auto& item : DriveDosPathList)
                            {
                                if (_T('\\') != szBuffer[item.second.size()])
                                {
                                    continue;
                                }

                                if (0 == _tcsncmp(item.second.c_str(), szBuffer, item.second.size()))
                                {
                                    info.FilePath = item.first + &szBuffer[item.second.size()];
                                    fFind = true;
                                    break;
                                }
                            }

                            if (!fFind && 4 == info.UniqueParentProcessId)
                            {
                                info.FilePath = GetKernelFileName();
                            }

                        }
                        else
                        {
                            if (4 == info.UniqueProcessId || 4 == info.UniqueParentProcessId)
                            {
                                info.FilePath = GetKernelFileName();
                            }
                        }

                        if (!onlyPathSet.empty() && onlyPathSet.end() == onlyPathSet.find(info.FilePath))
                        {
                            fSkip = true;
                            break;
                        }

                        if (!info.FilePath.empty())
                        {
                            PVOID pFsRedirectionOldValue = NULL;
                            bool isDisableWow64Fs = false;

                            // 禁用文件重定向
                            isDisableWow64Fs = ::Wow64DisableWow64FsRedirection(&pFsRedirectionOldValue);

                            HMODULE hModule = NULL;

                            do
                            {
                                // 以数据资源方式加载PE文件
                                hModule = ::LoadLibraryEx(
                                    info.FilePath.c_str(),
                                    0, LOAD_LIBRARY_AS_DATAFILE | LOAD_LIBRARY_AS_IMAGE_RESOURCE
                                );

                                if (!hModule)
                                {
                                    break;
                                }

                                // 获取PE文件头信息
                                info.PeHeader.LoadFromModule(hModule);

                                // 获取版本信息
                                info.Versions = GetResourceVersion(hModule, langList);


                            } while (false);

                            if (hModule)
                            {
                                ::FreeLibrary(hModule);
                            }

                            // 恢复文件重定向
                            if (isDisableWow64Fs)
                            {
                                ::Wow64RevertWow64FsRedirection(pFsRedirectionOldValue);
                            }
                        }

                        // 获取进程组信息
                        info.Groups = _GetProcessTokenGroups(hProcess);


                    } while (false);

                    // 模块列表
                    if (fModule)
                    {
                        info.Modules = GetModuleList((DWORD)info.UniqueProcessId);

                        if (info.Modules.empty())
                        {
                            info.Modules = GetModuleListEx((DWORD)info.UniqueProcessId);
                        }
                    }

                    if (NULL != hProcess)
                    {
                        ::CloseHandle(hProcess);
                    }

                    if (0 == info.UniqueProcessId)
                    {
                        info.ImageName = _T("System Idle Process");
                    }

                    if (!info.Versions.empty())
                    {
                        info.FileVersion = info.Versions.begin()->second;

                        auto itFind = info.Versions.find(LangId);
                        if (info.Versions.end() != itFind)
                        {
                            info.FileVersion = itFind->second;
                        }
                    }

                    if (!fSkip)
                    {
                        infoList.emplace((DWORD)info.UniqueProcessId, info);
                    }
                }
            }

        } while (false);

        if (pPi)
        {
            ::WTSFreeMemory(pPi);
        }

        return infoList;
    }

    PROCESS_INFO_LIST GetProcessList2(
        const _tstring& strName/* = _T("")*/,
        DWORD dwPID/* = 0*/,
        bool fModule/* = false*/,
        bool fMultilingual/* = true*/,
        const PROC_PATH_SET& onlyPathSet/* = {}*/
    )
    {
        PROCESS_INFO_LIST infoList;
        HANDLE hProcessSnap = NULL;
        PROCESSENTRY32 pe32 = { 0 };
        pe32.dwSize = sizeof(pe32);
        DWORD dwQueryAccess = GetQueryAccess();
        DRIVE_DOS_LIST DriveDosPathList = _GetDriveDosPathList();
        LANGID LangId = ::GetThreadUILanguage();
        LANG_LIST langTempList = GetLangList();
        LANG_LIST langList;

        if (!fMultilingual)
        {
            auto itFind = langTempList.find(LangId);
            if (langTempList.end() != itFind)
            {
                langList.emplace(*itFind);
            }

            itFind = langTempList.find(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US));
            if (langTempList.end() != itFind)
            {
                langList.emplace(*itFind);
            }
        }
        else
        {
            langList = std::move(langTempList);
        }

        do
        {
            hProcessSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
            if (INVALID_HANDLE_VALUE == hProcessSnap)
            {
                break;
            }

            if (!::Process32First(hProcessSnap, &pe32))
            {
                break;
            }

            do
            {
                _tstring strImageName = pe32.szExeFile;
                DWORD dwProcessId = pe32.th32ProcessID;

                if ((0 == dwPID || dwPID == dwProcessId) &&
                    (strName.empty() || (0 == _tcsicmp(strName.c_str(), strImageName.c_str())))
                    )
                {
                    PROCESS_INFO info;

                    info.UniqueParentProcessId = pe32.th32ParentProcessID;
                    info.UniqueProcessId = pe32.th32ProcessID;
                    info.ImageName = pe32.szExeFile;
                    info.NumberOfThreads = pe32.cntThreads;
                    info.BasePriority = pe32.pcPriClassBase;

                    HANDLE hProcess = NULL;
                    bool fSkip = false;

                    do
                    {
                        TCHAR szBuffer[MAX_PATH] = { 0 };

                        // 打开进程
                        hProcess = ::OpenProcess(dwQueryAccess, FALSE, (DWORD)info.UniqueProcessId);
                        if (NULL == hProcess)
                        {
                            if (!onlyPathSet.empty())
                            {
                                fSkip = true;
                            }

                            break;
                        }

                        // 进程句柄信息
                        ::GetProcessHandleCount(hProcess, (LPDWORD)&info.HandleCount);
                        info.GdiCount = ::GetGuiResources(hProcess, GR_GDIOBJECTS);
                        info.UserCount = ::GetGuiResources(hProcess, GR_USEROBJECTS);

                        // 句柄必须具有 PROCESS_QUERY_INFORMATION 或 PROCESS_QUERY_LIMITED_INFORMATION 访问权限。
                        // Windows Server 2003 和 Windows XP: 句柄必须具有 PROCESS_QUERY_INFORMATION 访问权限。
                        if (0 != ::GetProcessImageFileName(hProcess, szBuffer, _countof(szBuffer)))
                        {
                            bool fFind = false;
                            for (const auto& item : DriveDosPathList)
                            {
                                if (_T('\\') != szBuffer[item.second.size()])
                                {
                                    continue;
                                }

                                if (0 == _tcsncmp(item.second.c_str(), szBuffer, item.second.size()))
                                {
                                    info.FilePath = item.first + &szBuffer[item.second.size()];
                                    fFind = true;
                                    break;
                                }
                            }

                            if (!fFind && 4 == info.UniqueParentProcessId)
                            {
                                info.FilePath = GetKernelFileName();
                            }

                        }
                        else
                        {
                            if (4 == info.UniqueProcessId || 4 == info.UniqueParentProcessId)
                            {
                                info.FilePath = GetKernelFileName();
                            }
                        }

                        if (!onlyPathSet.empty() && onlyPathSet.end() == onlyPathSet.find(info.FilePath))
                        {
                            fSkip = true;
                            break;
                        }

                        if (!info.FilePath.empty())
                        {
                            PVOID pFsRedirectionOldValue = NULL;
                            bool isDisableWow64Fs = false;

                            // 禁用文件重定向
                            isDisableWow64Fs = ::Wow64DisableWow64FsRedirection(&pFsRedirectionOldValue);

                            HMODULE hModule = NULL;

                            do
                            {
                                // 以数据资源方式加载PE文件
                                hModule = ::LoadLibraryEx(
                                    info.FilePath.c_str(),
                                    0, LOAD_LIBRARY_AS_DATAFILE | LOAD_LIBRARY_AS_IMAGE_RESOURCE
                                );

                                if (!hModule)
                                {
                                    break;
                                }

                                // 获取PE文件头信息
                                info.PeHeader.LoadFromModule(hModule);

                                // 获取版本信息
                                info.Versions = GetResourceVersion(hModule, langList);


                            } while (false);

                            if (hModule)
                            {
                                ::FreeLibrary(hModule);
                            }

                            // 恢复文件重定向
                            if (isDisableWow64Fs)
                            {
                                ::Wow64RevertWow64FsRedirection(pFsRedirectionOldValue);
                            }
                        }

                        // 获取进程组信息
                        info.Groups = _GetProcessTokenGroups(hProcess);

                    } while (false);

                    // 模块列表
                    if (fModule)
                    {
                        info.Modules = GetModuleList((DWORD)info.UniqueProcessId);

                        if (info.Modules.empty())
                        {
                            info.Modules = GetModuleListEx((DWORD)info.UniqueProcessId);
                        }
                    }

                    if (NULL != hProcess)
                    {
                        ::CloseHandle(hProcess);
                    }

                    if (0 == info.UniqueProcessId)
                    {
                        info.ImageName = _T("System Idle Process");
                    }

                    if (!info.Versions.empty())
                    {
                        info.FileVersion = info.Versions.begin()->second;

                        auto itFind = info.Versions.find(LangId);
                        if (info.Versions.end() != itFind)
                        {
                            info.FileVersion = itFind->second;
                        }
                    }

                    if (!fSkip)
                    {
                        infoList.emplace((DWORD)info.UniqueProcessId, info);
                    }
                }

            } while (::Process32Next(hProcessSnap, &pe32));

        } while (false);

        if (INVALID_HANDLE_VALUE != hProcessSnap)
        {
            ::CloseHandle(hProcessSnap);
        }

        return infoList;
    }

    double GetCpuUsage()
    {
        return CProcessUsageCollector::GetInst().GetCpuUsage();
    }

    PROCESS_INFO_LIST GetProcessList(
        const _tstring& strName/* = _T("")*/,
        DWORD dwPID/* = 0*/,
        bool fModule/* = false*/,
        bool fMultilingual/* = true*/,
        bool fSid/* = false*/,
        const PROC_PATH_SET& onlyPathSet/* = {}*/
    )
    {
        PROCESS_INFO_LIST infoList;
        PSYSTEM_PROCESS_INFORMATION pSpi = NULL;
        NTSTATUS ntStatus = STATUS_SUCCESS;
        ULONG uDataLength = 0;
        ULONG uReturnLength = 0;
        bool fResult = false;
        DWORD dwQueryAccess = GetQueryAccess();

        do
        {
            ntStatus = NtQuerySystemInformation(
                SystemProcessInformation,
                NULL,
                0,
                &uReturnLength
            );
            if (STATUS_INFO_LENGTH_MISMATCH != ntStatus)
            {
                break;
            }

            uDataLength = uReturnLength * 4;

            pSpi = (PSYSTEM_PROCESS_INFORMATION)::HeapAlloc(
                ::GetProcessHeap(),
                HEAP_ZERO_MEMORY,
                uDataLength
            );
            if (!pSpi)
            {
                break;
            }

            ntStatus = NtQuerySystemInformation(
                SystemProcessInformation,
                pSpi,
                uDataLength,
                &uReturnLength
            );
            if (STATUS_SUCCESS != ntStatus)
            {
                break;
            }

            DRIVE_DOS_LIST DriveDosPathList = _GetDriveDosPathList();
            LANGID LangId = ::GetThreadUILanguage();
            LANG_LIST langTempList = GetLangList();
            LANG_LIST langList;

            if (!fMultilingual)
            {
                auto itFind = langTempList.find(LangId);
                if (langTempList.end() != itFind)
                {
                    langList.emplace(*itFind);
                }

                itFind = langTempList.find(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US));
                if (langTempList.end() != itFind)
                {
                    langList.emplace(*itFind);
                }
            }
            else
            {
                langList = std::move(langTempList);
            }

            PSYSTEM_PROCESS_INFORMATION pSpiTemp = pSpi;
            while (pSpiTemp)
            {
                _tstring strImageName = WStrToTStr(WStrFromUnicodeString(&pSpiTemp->ImageName));
                DWORD dwProcessId = (DWORD)pSpiTemp->UniqueProcessId;

                if ((0 == dwPID || dwPID == dwProcessId) &&
                    (strName.empty() || (0 == _tcsicmp(strName.c_str(), strImageName.c_str())))
                    )
                {
                    PSYSTEM_THREAD_INFORMATION pStiTemp = pSpiTemp->Threads;

                    PROCESS_INFO info;
                    for (ULONG i = 0; i < pSpiTemp->NumberOfThreads; i++)
                    {
                        if (KWAIT_REASON::Suspended == pStiTemp->WaitReason)
                        {
                            info.SuspendThreadCount++;
                        }

                        info.ThreadCount++;
                        pStiTemp++;
                    }

                    // 标准信息
                    info.NumberOfThreads = pSpiTemp->NumberOfThreads;
                    info.WorkingSetPrivateSize = pSpiTemp->WorkingSetPrivateSize.QuadPart;
                    info.HardFaultCount = pSpiTemp->HardFaultCount;
                    info.NumberOfThreadsHighWatermark = pSpiTemp->NumberOfThreadsHighWatermark;
                    info.CycleTime = pSpiTemp->CycleTime;
                    info.CreateTime = pSpiTemp->CreateTime.QuadPart;
                    info.UserTime = pSpiTemp->UserTime.QuadPart;
                    info.KernelTime = pSpiTemp->KernelTime.QuadPart;
                    info.ImageName = strImageName;
                    info.BasePriority = pSpiTemp->BasePriority;
                    info.UniqueProcessId = (uint64_t)pSpiTemp->UniqueProcessId;
                    info.UniqueParentProcessId = (uint64_t)pSpiTemp->UniqueParentProcessId;
                    info.HandleCount = pSpiTemp->HandleCount;
                    info.SessionId = pSpiTemp->SessionId;
                    info.UniqueProcessKey = pSpiTemp->UniqueProcessKey;
                    info.PeakVirtualSize = pSpiTemp->PeakVirtualSize;
                    info.VirtualSize = pSpiTemp->VirtualSize;
                    info.PageFaultCount = pSpiTemp->PageFaultCount;
                    info.PeakWorkingSetSize = pSpiTemp->PeakWorkingSetSize;
                    info.WorkingSetSize = pSpiTemp->WorkingSetSize;
                    info.QuotaPeakPagedPoolUsage = pSpiTemp->QuotaPeakPagedPoolUsage;
                    info.QuotaPagedPoolUsage = pSpiTemp->QuotaPagedPoolUsage;
                    info.QuotaPeakNonPagedPoolUsage = pSpiTemp->QuotaPeakNonPagedPoolUsage;
                    info.QuotaNonPagedPoolUsage = pSpiTemp->QuotaNonPagedPoolUsage;
                    info.PagefileUsage = pSpiTemp->PagefileUsage;
                    info.PeakPagefileUsage = pSpiTemp->PeakPagefileUsage;
                    info.PrivatePageCount = pSpiTemp->PrivatePageCount;
                    info.ReadOperationCount = pSpiTemp->ReadOperationCount.QuadPart;
                    info.WriteOperationCount = pSpiTemp->WriteOperationCount.QuadPart;
                    info.OtherOperationCount = pSpiTemp->OtherOperationCount.QuadPart;
                    info.ReadTransferCount = pSpiTemp->ReadTransferCount.QuadPart;
                    info.WriteTransferCount = pSpiTemp->WriteTransferCount.QuadPart;
                    info.OtherTransferCount = pSpiTemp->OtherTransferCount.QuadPart;
                    info.CpuUsage = CProcessUsageCollector::GetInst().GetProcessUsage(dwProcessId);

                    HANDLE hProcess = NULL;
                    bool fSkip = false;

                    do
                    {
                        TCHAR szBuffer[MAX_PATH] = { 0 };

                        // 打开进程
                        hProcess = ::OpenProcess(dwQueryAccess, FALSE, (DWORD)info.UniqueProcessId);
                        if (NULL == hProcess)
                        {
                            if (!onlyPathSet.empty())
                            {
                                fSkip = true;
                            }

                            break;
                        }

                        // 进程句柄信息
                        ::GetProcessHandleCount(hProcess, (LPDWORD)&info.HandleCount);
                        info.GdiCount = ::GetGuiResources(hProcess, GR_GDIOBJECTS);
                        info.UserCount = ::GetGuiResources(hProcess, GR_USEROBJECTS);

                        // 句柄必须具有 PROCESS_QUERY_INFORMATION 或 PROCESS_QUERY_LIMITED_INFORMATION 访问权限。
                        // Windows Server 2003 和 Windows XP: 句柄必须具有 PROCESS_QUERY_INFORMATION 访问权限。
                        if (0 != ::GetProcessImageFileName(hProcess, szBuffer, _countof(szBuffer)))
                        {
                            bool fFind = false;
                            for (const auto& item : DriveDosPathList)
                            {
                                if (_T('\\') != szBuffer[item.second.size()])
                                {
                                    continue;
                                }

                                if (0 == _tcsncmp(item.second.c_str(), szBuffer, item.second.size()))
                                {
                                    info.FilePath = item.first + &szBuffer[item.second.size()];
                                    fFind = true;
                                    break;
                                }
                            }

                            if (!fFind && 4 == info.UniqueParentProcessId)
                            {
                                info.FilePath = GetKernelFileName();
                            }

                        }
                        else
                        {
                            if (4 == info.UniqueProcessId || 4 == info.UniqueParentProcessId)
                            {
                                info.FilePath = GetKernelFileName();
                            }
                        }

                        if (!onlyPathSet.empty() && onlyPathSet.end() == onlyPathSet.find(info.FilePath))
                        {
                            fSkip = true;
                            break;
                        }

                        if (!info.FilePath.empty())
                        {
                            PVOID pFsRedirectionOldValue = NULL;
                            bool isDisableWow64Fs = false;

                            // 禁用文件重定向
                            isDisableWow64Fs = ::Wow64DisableWow64FsRedirection(&pFsRedirectionOldValue);

                            HMODULE hModule = NULL;

                            do
                            {
                                // 以数据资源方式加载PE文件
                                hModule = ::LoadLibraryEx(
                                    info.FilePath.c_str(),
                                    0, LOAD_LIBRARY_AS_DATAFILE | LOAD_LIBRARY_AS_IMAGE_RESOURCE
                                );

                                if (!hModule)
                                {
                                    break;
                                }

                                // 获取PE文件头信息
                                info.PeHeader.LoadFromModule(hModule);

                                // 获取版本信息
                                auto itFind = g_versionCache.find(info.FilePath);
                                if (g_versionCache.end() != itFind)
                                {
                                    info.Versions = itFind->second;
                                }
                                else
                                {
                                    info.Versions = GetResourceVersion(hModule, langList);
                                    g_versionCache.emplace(info.FilePath, info.Versions);
                                }

                            } while (false);

                            if (hModule)
                            {
                                ::FreeLibrary(hModule);
                            }

                            // 恢复文件重定向
                            if (isDisableWow64Fs)
                            {
                                ::Wow64RevertWow64FsRedirection(pFsRedirectionOldValue);
                            }
                        }

                        // 获取进程组信息
                        info.Groups = _GetProcessTokenGroups(hProcess);

                    } while (false);

                    // 模块列表
                    if (fModule)
                    {
                        info.Modules = GetModuleList((DWORD)info.UniqueProcessId);

                        if (info.Modules.empty())
                        {
                            info.Modules = GetModuleListEx((DWORD)info.UniqueProcessId);
                        }
                    }

                    if (NULL != hProcess)
                    {
                        ::CloseHandle(hProcess);
                    }

                    if (0 == info.UniqueProcessId)
                    {
                        info.ImageName = _T("System Idle Process");
                    }

                    if (!info.Versions.empty())
                    {
                        info.FileVersion = info.Versions.begin()->second;

                        auto itFind = info.Versions.find(LangId);
                        if (info.Versions.end() != itFind)
                        {
                            info.FileVersion = itFind->second;
                        }
                    }

                    if (!fSkip)
                    {
                        infoList.emplace((DWORD)pSpiTemp->UniqueProcessId, info);
                    }
                }

                if (!pSpiTemp->NextEntryOffset)
                {
                    break;
                }

                pSpiTemp = (PSYSTEM_PROCESS_INFORMATION)((uint8_t*)pSpiTemp + pSpiTemp->NextEntryOffset);
            }

            fResult = true;

        } while (false);

        if (pSpi)
        {
            ::HeapFree(::GetProcessHeap(), 0, pSpi);
        }

        // 获取进程用户名信息
        if (fSid)
        {
            PROC_SID_LIST mapResult = GetProcessAccountSidList();

            for (auto& item : infoList)
            {
                auto itFind = mapResult.find(item.first);
                if (mapResult.end() != itFind)
                {
                    item.second.SidInfo = itFind->second;
                }
            }
        }

        return infoList;
    }

    PROCESS_INFO GetProcessInfo(
        DWORD dwPID,
        bool fModule/* = false*/,
        bool fMultilingual/* = true*/
    )
    {
        PROCESS_INFO info;
        PROCESS_INFO_LIST infos = GetProcessList(_T(""), dwPID, fModule, fMultilingual);

        auto itFind = infos.find(dwPID);
        if (itFind != infos.end())
        {
            info = itFind->second;
        }

        return info;
    }

    PROC_NODE_LIST GetProcessNodes(const PROCESS_INFO_LIST& procList)
    {
        PROC_NODE_LIST mapResult;

        for (const auto& item : procList)
        {
            if (mapResult.end() != mapResult.find(item.first))
            {
                continue;
            }

            bool fParent = true;

            auto itParent = procList.find((DWORD)item.second.UniqueParentProcessId);
            if (procList.end() == itParent)
            {
                fParent = false;
            }
            else
            {
                if (itParent->second.CreateTime > item.second.CreateTime)
                {
                    fParent = false;
                }
            }

            if (0 == (DWORD)item.second.UniqueParentProcessId
                || !fParent
                )
            {
                PROC_NODE node = _GetProcessNode(procList, item.second);
                mapResult.emplace(item.first, node);
            }
        }

        return mapResult;
    }

    PROC_NODE_LIST GetProcessNodes(
        bool fModule/* = false*/,
        bool fMultilingual/* = false*/
    )
    {
        PROCESS_INFO_LIST infos = GetProcessList(_T(""), 0, fModule, fMultilingual);
        return GetProcessNodes(infos);
    }

    MODULE_INFO_LIST GetModuleList(DWORD dwPID)
    {
        MODULE_INFO_LIST vModules;
        HANDLE hModuleSnap = NULL;
        MODULEENTRY32 me32 = { 0 };
        me32.dwSize = sizeof(me32);
        DWORD dwFlags = TH32CS_SNAPMODULE | TH32CS_SNAPMODULE32;

        do
        {
            hModuleSnap = ::CreateToolhelp32Snapshot(dwFlags, dwPID);
            if (INVALID_HANDLE_VALUE == hModuleSnap)
            {
                break;
            }

            if (!::Module32First(hModuleSnap, &me32))
            {
                break;
            }

            do
            {
                MODULE_INFO info;
                info.th32ProcessID = me32.th32ProcessID;
                info.GlblcntUsage = me32.GlblcntUsage;
                info.modBaseAddr = me32.modBaseAddr;
                info.modBaseSize = me32.modBaseSize;
                info.hModule = me32.hModule;
                info.strExePath = me32.szExePath;
                info.strModule = me32.szModule;

                vModules.emplace(info.strModule, info);

            } while (::Module32Next(hModuleSnap, &me32));

        } while (false);

        if (INVALID_HANDLE_VALUE != hModuleSnap)
        {
            ::CloseHandle(hModuleSnap);
        }

        return vModules;
    }

    MODULE_INFO_LIST GetModuleListEx(DWORD dwPID)
    {
        MODULE_INFO_LIST vModules;
        HMODULE* phMods = NULL;
        HANDLE hProcess = NULL;
        DWORD cbNeeded = 0;
        DWORD dwModSize = 0;
        DWORD dwAccess = GetQueryAccess() | PROCESS_VM_READ;

        do
        {
            hProcess = ::OpenProcess(dwAccess, FALSE, dwPID);
            if (NULL == hProcess)
            {
                break;
            }

            if (!::EnumProcessModulesEx(hProcess, NULL, NULL, &cbNeeded, LIST_MODULES_ALL))
            {
                break;
            }

            dwModSize = cbNeeded;

            phMods = (HMODULE*)::HeapAlloc(::GetProcessHeap(), HEAP_ZERO_MEMORY, dwModSize);
            if (NULL == phMods)
            {
                break;
            }

            if (!::EnumProcessModulesEx(hProcess, phMods, dwModSize, &cbNeeded, LIST_MODULES_ALL))
            {
                break;
            }

            size_t nModuleCnt = (cbNeeded / sizeof(HMODULE));
            for (size_t i = 0; i < nModuleCnt; i++)
            {
                TCHAR szModuleFileName[MAX_PATH] = { 0 };
                ::GetModuleFileNameEx(hProcess, phMods[i], szModuleFileName, _countof(szModuleFileName));
                TCHAR szModuleBaseName[MAX_PATH] = { 0 };
                ::GetModuleBaseName(hProcess, phMods[i], szModuleBaseName, _countof(szModuleBaseName));

                MODULEINFO modinfo = { 0 };

                GetModuleInformation(hProcess, phMods[i], &modinfo, sizeof(modinfo));
                MODULE_INFO info;
                info.strExePath = szModuleFileName;
                info.strModule = szModuleBaseName;
                info.modBaseAddr = modinfo.lpBaseOfDll;
                info.modBaseSize = modinfo.SizeOfImage;
                info.hModule = (HMODULE)modinfo.lpBaseOfDll;

                vModules.emplace(info.strExePath, info);
            }

        } while (false);

        if (NULL != hProcess)
        {
            ::CloseHandle(hProcess);
        }

        if (phMods)
        {
            ::HeapFree(::GetProcessHeap(), 0, phMods);
        }

        return vModules;
    }

    typedef struct _PROCESS_BASIC_INFORMATION
    {
        NTSTATUS ExitStatus;
        LPVOID PebBaseAddress;
        KAFFINITY AffinityMask;
        KPRIORITY BasePriority;
        DWORD_PTR UniqueProcessId;
        DWORD_PTR InheritedFromUniqueProcessId;
    } PROCESS_BASIC_INFORMATION, * PPROCESS_BASIC_INFORMATION;

    DWORD GetParentProcessID(DWORD dwProcessId)
    {
        PROCESS_BASIC_INFORMATION info = { 0 };
        HANDLE hProcess = NULL;
        NTSTATUS ntStatus = STATUS_SUCCESS;
        ULONG Restun = 0;
        DWORD ParentPID = 0;
        DWORD dwAccess = GetQueryAccess();

        do
        {
            hProcess = OpenProcess(dwAccess, FALSE, dwProcessId);
            if (!hProcess)
            {
                break;
            }

            ntStatus = NtQueryInformationProcess(
                hProcess,
                ProcessBasicInformation,
                &info,
                sizeof(PROCESS_BASIC_INFORMATION),
                &Restun
            );

            if (STATUS_SUCCESS != ntStatus)
            {
                break;
            }

            ParentPID = (DWORD)info.InheritedFromUniqueProcessId;

        } while (false);

        if (hProcess)
        {
            ::CloseHandle(hProcess);
        }

        return ParentPID;
    }
}

main.cpp

#include <locale.h>
#include <tchar.h>
#include <time.h>
#include "Win32Utils/CStrUtils.h"
#include "Win32Utils/CProcessExUtils.h"
#include <algorithm>
#include <iostream>

int _tmain(int argc, LPCTSTR argv[])
{
    setlocale(LC_ALL, "");

    while (true)
    {
        CProcessExUtils::PROCESS_INFO_LIST ProcList = CProcessExUtils::GetProcessList(_T(""), 0, false, false);

        std::vector<CProcessExUtils::PROCESS_INFO> vProc;

        for (const auto& item : ProcList)
        {
            if (item.second.CpuUsage > 0.0f)
            {
                vProc.push_back(item.second);
            }
        }

        if (!vProc.empty())
        {
            std::sort(vProc.begin(), vProc.end(), [](const CProcessExUtils::PROCESS_INFO a, const CProcessExUtils::PROCESS_INFO b) {
                return a.CpuUsage > b.CpuUsage;
                }
            );
        }

        CStrUtils::ConsoleSetPos();
        CStrUtils::ConsoleClear(-1, 1);
        CStrUtils::ConsoleOutput(_T("CPU %.2lf%%\n"), CProcessExUtils::GetCpuUsage() * 100.0f);

        for (const auto& item : vProc)
        {
            if (item.CpuUsage > 0.0f)
            {
                CStrUtils::ConsoleClear(-1, 1);
                CStrUtils::ConsoleOutput(_T("%8d %6.2lf%% %20s %s %s\n"), 
                    item.UniqueProcessId, 
                    item.CpuUsage * 100.0f, 
                    item.ImageName.c_str(),
                    item.FileVersion.strFileVersion.c_str(),
                    item.FileVersion.strFileDescription.c_str()
                    );
            }
        }
        CStrUtils::ConsoleClear();

        ::Sleep(1000);
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值