ProcessView进程遍历工具 1.0软件介绍
ProcessView是一款功能强大,简单实用的进程遍历工具,ProcessView可以在进程列表栏目上查询进程模块,进程线程,进程窗口等信息,查看进程和线程的ID,基址和大小等项目,软件使用C++编辑器环境进行导入编辑即可。
查询进程模块源码
//遍历模块信息,添加到列表
void CMyModuleInfoDlg::GetModuleInfo()
{
//拍进程快照
HANDLE hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE,
m_ProcessId);
//获取快照失败,直接返回
if (INVALID_HANDLE_VALUE == hSnapshot)
{
return;
}
MODULEENTRY32 me32 = { 0 };
me32.dwSize = sizeof(MODULEENTRY32);
//遍历进程
if (Module32First(hSnapshot, &me32))
{
int nRow = 0;
CString strFmt;
do
{
//将模块路径加入列表
m_ListCtrl.InsertItem(nRow, me32.szExePath);
//将模块基地址加入列表
strFmt.Format(_T("0x%016X"), me32.modBaseAddr);
m_ListCtrl.SetItemText(nRow, 1, strFmt);
//将模块大小加入列表
strFmt.Format(_T("0x%016X"), me32.modBaseSize);
m_ListCtrl.SetItemText(nRow, 2, strFmt);
nRow++;
} while (Module32Next(hSnapshot, &me32));
}
//关闭句柄
CloseHandle(hSnapshot);
ProcessView软件特色:
学习WIN32编程的时候,做了一个进程遍历工具,ProcessView支持dll注入
相关软件推荐
龙管家伴侣数据库修改工具 7.1 | 8.00分 | 2022-06-18 | 下载 | ||
Billion Chords 1.0 | 4.00分 | 2022-06-18 | 下载 | ||
新型Win键屏蔽器 1.0 | 8.00分 | 2022-06-18 | 下载 | ||
Data LifeGuard Diagnostics 1.13 | 8.00分 | 2022-06-18 | 下载 | ||
Easy Spaceguard Personal Edition 1.5.1 | 8.00分 | 2022-06-18 | 下载 | ||
Windows Server 2003 安全更新程序 (KB890046) | 8.00分 | 2022-06-18 | 下载 |
-
Extra Drive Creator Pro 7.3
-
EZ Backup QuickBooks 6.32
-
Shortcut Doctor 3.1 汉化补丁
-
批量更名专家 2.52
-
Windows Server 2003安全更新程序(KB925486) 925486
-
Windows Server 2003更新程序(KB924432)
-
Windows 2000 安全更新程序 (KB917736)
-
AutoPower-onShut-down 2.30
-
Windows 2000 安全更新程序 (KB924270)
-
Windows 2000 更新程序 (KB935843)
-
适用于Win 2000的WMP 7.1安全更新(KB911565)
-
Windows 2000 安全更新程序 (KB908523)
-
Windows Vista安全更新程序(KB946456)
-
Windows Server 2003 Optimize Tool 1.45版
-
Windows 2000 的安全更新 KB828035
-
Windows 2000 的安全更新 KB825119