E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
PSAPI
PSAPI
和ToolHelpAPI学习笔记
标 题:
PSAPI
学习笔记 作 者:北极星2003 时 间:2005-07-24 18:36 链 接:http://bbs.pediy.com/
·
2015-10-31 10:27
学习笔记
进程枚举之
PSAPI
函数
使用
PSAPI
(Process StatusAPI)函数 这是一种Windows NT/2000下的方法。核心是使用EnumProcesses函数。
·
2015-10-31 10:27
api
VS2003远程调试
在安装包中找到下列文件: msvcmon.exe msvcr71.dll NatDbgDM.dll NatDbgTLNet.dll
psapi
.dll dbghelp.dll 其中
psapi
.dll
·
2015-10-30 14:57
远程调试
Delphi编程获取系统当前进程、窗口句柄、文件属性以
uses TLHelp32,
PsAPI
; (1)显示进程列表:procedure TForm1.Button2Click(Sender: TObject);var lppe: TProcessEntry32
·
2015-10-27 16:19
Delphi
64bit上安装32位oracle 10 g出现错误:无法定位承诺工序输入点 getprocessimagifilenamew 于动态链接库
PSAPI
.DLL
转自http://jonelove00.iteye.com/blog/1685206安 装时以最高管理员身份运行:红色字体为自己加上去的代码 找到..\database\stage\prereq\db\refhost.xml 打开加入 <OPERATING_SYSTEM>
·
2015-10-21 11:57
process
Icesword FAQ端口 进程 服务篇
答:1、绝大多数所谓的进程工具都是利用Windows的Toolhlp32或
psapi
再或 ZwQuerySystemInformation系统调用(前二者最终也用到此调用)来编写,随便一个ApiHook
·
2015-10-21 11:24
word
Win32使用
Psapi
库枚举系统进程信息
一、枚举当前的所有进程(64位的程序暂时不会处理) 通过EnumProcesses得到当前所有的进程的进程ID,然后调用OpenProcess通过进程ID得到进程句柄,再调用EnumProcessModules来得到该进程的模块句柄,GetModuleBaseName通过进程模块句柄得到进程的名字,GetModuleFileNameEx通过进程模块句柄得到进程的可执行文件名。上面所有函数的参数信
jiangqin115
·
2015-05-07 14:00
error LNK2019: 无法解析的外部符号
我的是由于GetModuleFileNameEx无法解析,跟进其定义处得知其在
psapi
.lib;中 添加这个之后解决了该问题。
hnust_xiehonghao
·
2015-03-07 10:00
进程内存访问
进程访问类#pragmaonce #include #pragmacomment(lib,"
psapi
") classCProceseBuffer { public: CProceseBuffer(
sdhongjun
·
2015-02-25 21:00
windows下遍历进程和杀进程
windows下遍历进程有多种方式:进程快照:CreateToolhelp32Snapshot;进程状态API:
PSAPI
;在
psapi
中主要使用到的方法有:EnumProcesses——枚举进程;EnumProcessModules
IT_DREAM_ER
·
2015-02-06 13:00
windows
遍历
[置顶] windows遍历进程与杀死进程
windows下遍历进程有多种方式:进程快照:CreateToolhelp32Snapshot;进程状态API:
PSAPI
;在
psapi
中主要使用到的方法有:EnumProcesses——枚举进程;EnumProcessModules
sowhat_Ah
·
2015-02-04 12:00
PSAPI遍历进程
EnumProcesses
VC++实现无进程无dll线程注射技术
#include "stdafx.h" #include "windows.h" #include "stdio.h" #include "
Psapi
.h" #include "Tlhelp32
skkg
·
2014-10-19 18:31
DLL注入
枚举进程,得到所有进程全路径文件名
include"stdafx.h"#include #include//声明快照函数的头文件 #include #include"CpuUsage.h"#include"GetProcInfo.h"#include"
Psapi
.h
jiangqin115
·
2014-08-26 09:00
VC++枚举进程与模块
include"windows.h" #include"tlhelp32.h" #include"stdio.h" #include"NativeApi.h" #include"wchar.h" #include"
psapi
.h
tiandyoin
·
2014-08-17 16:00
Win32使用
Psapi
库枚举系统进程信息
原文地址:http://my.oschina.net/u/111188/blog/178643一、枚举当前的所有进程(64位的程序暂时不会处理) 通过EnumProcesses得到当前所有的进程的进程ID,然后调用OpenProcess通过进程ID得到进程句柄,再调用EnumProcessModules来得到该进程的模块句柄,GetModuleBaseName通过进程模块句柄得到进程的名字,Ge
Kevin_Samuel
·
2014-06-08 18:00
远程线程注入dll
include"stdafx.h" #include #include #include #include #include usingnamespacestd; #include #pragmacomment(lib,"
Psapi
.lib
xie376450483
·
2014-06-04 16:00
通过PID获取进程路径和进程名的两种方法
获取进程路径和进程名的两种方法分类: 编程技术2012-04-2510:54 3220人阅读 评论(3) 收藏 举报extensionpathnulltokenextwindows通过PID获取进程路径和进程名,使用了
psapi
.h
jfkidear
·
2014-05-26 10:00
编程技术
进程的创建 获取信息 进程模块信息 结束等候进程 windows工作等14.4.28
/
psapi
/
psapi
.h" #pragmacomment(li
luoqiang0831
·
2014-04-28 14:00
error LNK2019对照表
errorLNK2019:无法解析的外部符号_EnumProcesses@12,该符号在函数_main中被引用 ,应该添加#pragmacomment(lib,"
Psapi
.lib")
coperator
·
2014-03-11 01:00
delphi实时监视应用程序内存使用量
//----需要Uses
PsAPI
单元。---- www.delphitop.com function GetProcessMemUse(P
KavenSu
·
2014-01-21 16:00
VC获取进程启动和结束时间
使用说明:该工具来自codeproject,使用
PSAPI
获取内核模式和用户模式进程并将用户模式进程的启动时间和结束时间记入日志。本文工具程序名为ProcessTime。
u013805103
·
2014-01-12 23:00
提升权限并枚举系统进程
#include #include #include"
PSAPI
.H" #pragmacomment(lib,"
PSAPI
.LIB") //自定义函数:赋予指定特权。这里用来提升程序权限。
zhoujiaxq
·
2013-12-26 16:00
使用
Psapi
接口查看进程状态
一、枚举当前的所有进程(64位的程序暂时不会处理) 通过EnumProcesses得到当前所有的进程的进程ID,然后调用OpenProcess通过进程ID得到进程句柄,再调用EnumProcessModules来得到该进程的模块句柄,GetModuleBaseName通过进程模块句柄得到进程的名字,GetModuleFileNameEx通过进程模块句柄得到进程的可执行文件名。上面所有函数的参数信
熊冬根
·
2013-11-24 20:00
vc++
任务管理器
PSAPI
杀毒软件的简单实现
#defineDEBUGMSG#include#include#include#include#include#include"
Psapi
.h"#pragmacomment(lib,"
Psapi
.lib
u013805103
·
2013-10-23 09:00
Inline Hook(ring3) 简单源码
#include#include#include#pragmacomment(lib,"
psapi
.lib")//BYTE Org_Code[7]; //备份dll法,因此就可以不需要BYTE
u013805103
·
2013-10-21 01:00
读取进程中程序使用内存大小
getMemorySize=function(exefile){//读取进程中程序使用内存大小 importprocess GetProcessMemoryInfo=::
Psapi
.api("GetProcessMemoryInfo
mcc1
·
2013-10-06 20:09
内存
进程
cocos2d-x获取程序当前内存使用量 GetProcessMemoryInfo 函数
使用函数GetProcessMemoryInfo获取程序当前内存使用量的步骤如下: 1.在程序中添加pragmacomment(lib,"
Psapi
.lib"),将
Psapi
.lib包含进去,或者通过在工程的属性中添加
lan354898254
·
2013-07-05 14:00
减少winform的内存使用量
大家也尝试一下吧 [DllImport("
psapi
.dll")] static extern int EmptyWorkingSet(IntPtr hwProc);
chenhailong
·
2013-06-01 06:00
WinForm
c++释放进程所占内存--快速释放内存
参考http://madcloudsong.com/articles/138中的方法 //此处只处理了32位的进程 #include #pragma comment (lib,"
psapi
.lib"
luwenji309
·
2013-04-24 12:51
c++释放进程所占内存
快速释放内存
c++/mfc
c++释放进程所占内存--快速释放内存
://madcloudsong.com/articles/138中的方法 //此处只处理了32位的进程 #include #pragma comment (lib,"
psapi
.lib
luwenji309
·
2013-04-24 12:51
c++释放进程所占内存
快速释放内存
SDK通过文件句柄获取文件路径
APIHandlePath*///通过文件句柄获取文件路径/*头文件*/#include#include#include#include#include/*预处理申明*/#pragmacomment(lib,"
Psapi
.lib
fsjaky
·
2013-04-09 12:00
SDK通过文件句柄获取文件路径
SDK枚举进程
//APIEnumProcess//列举线程/*头文件*/#include#include#include#pragmacomment(lib,"
Psapi
.lib") //EnumProcess()
fsjaky
·
2013-04-08 10:00
SDK枚举进程
WIN7安装Oracle10
安装Oracle10的时候出错错误描述如下:"无法定位程序输入点GetProcessImageFileNameW于动态链接库
PSAPI
.DLL上""ORA-12546"因为oracle10g暂时没有与win7
qiuxin315
·
2013-03-18 19:00
c++ 进程守护之打不死的小强
//进程守护之打不死的小强云守护 #include #include #include #include"
PSAPI
.H" #pragmacomment(lib,"
PSAPI
.LIB") HANDLECreateRemoteThreadProc
earbao
·
2013-03-17 14:00
致注入进程崩溃
//#include"stdafx.h"#include"windows.h"#include#include #pragmacomment(lib,"
Psapi
.lib") //==========传给注入线程的参数结构
zhihu008
·
2013-01-28 22:00
基于visual c++之windows核心编程代码分析(63)无模块dll进程注射
需要引用
Psapi
.Lib,具体可以百度下载之。其头文件如下,[cpp]viewplaincopyprint?
abcpanpeng
·
2013-01-01 14:00
VC++实现枚举进程与模块
include"windows.h" #include"tlhelp32.h" #include"stdio.h" #include"NativeApi.h" #include"wchar.h" #include"
psapi
.h
abcpanpeng
·
2013-01-01 13:00
VC++实现枚举进程与模块
include"windows.h" #include"tlhelp32.h" #include"stdio.h" #include"NativeApi.h" #include"wchar.h" #include"
psapi
.h
yincheng01
·
2012-10-24 15:00
Win764bit上安装32位Oracle10g出现错误:无法定位程序输入点GetProcessImageFileNameW于动态链接库
PSAPI
.DLL
安装时以最高管理员身份运行:红色字体为自己加上去的代码 找到..\database\stage\prereq\db\refhost.xml 打开加入 <OPERATING_SYSTEM> <VERSION VALUE="6.
jonelove00
·
2012-09-25 17:00
oracle
win7
error
VC++实现无进程无dll线程注射技术
请见代码分析,实现线程注射#include"stdafx.h" #include"windows.h" #include"stdio.h" #include"
Psapi
.h" #include"Tlhelp32
yincheng01
·
2012-07-16 15:00
thread
null
buffer
dll
vc++
token
查找、结束进程
#include #pragmacomment(lib,"
Psapi
.lib") DWORDFindProcessByName(char*szFindProcessName) { DWORDaProcesses
wshjldaxiong
·
2012-05-10 16:00
wince下的进程相关操作
下,函数的功能不复杂,就是遍历系统中所有的进程,直到找到要找到的进程并把它结束掉.就是移植这样一个简单的函数,却遇到了很多问题.当然移植成功后也学到了.原来的程序是在vc写的,VC下实现上述功能用的是
psapi
.dll
wuye110
·
2012-04-26 21:00
用EnumProcesses()枚举进程
以下代码在vs2008中测试通过:#include"stdafx.h" #include #include"
psapi
.h" #pragmacomment(lib,"
psapi
.lib") voidMyEnumProcess
cs08211317dn
·
2012-04-25 15:00
list
测试
null
System
query
Path
通过PID获取进程路径和进程名的两种方法
通过PID获取进程路径和进程名,使用了
psapi
.h类,获取进程路径,通过_splitpath()函数,获取路径中的文件名。
change518
·
2012-04-25 10:00
windows
ext
null
Path
token
extension
获取系统运行进程信息——
PSAPI
介绍使用
网上资料显示,有这么三种方法可以用来获取系统运行进程信息:方法平台备注PSAPIWindowsNT,Windows2000,WindowsXP获取进程,驱动器,模块,内存和工作集信息性能计数器WindowsNT,Windows2000,WindowsXP提供除进程清单以外的关于进程的更多信息,可在远程机器上使用。TOOLHELP32Windows9x,Windows2000,WindowsXP获取
BetaBin
·
2012-04-21 11:00
windows
list
Module
query
Path
each
PID<->Port
http://download.csdn.net/detail/change518/4236155//Netstat-anb #include #include"
Psapi
.h" #include
change518
·
2012-04-18 14:00
windows
server
struct
null
query
winapi
基于visual c++之windows核心编程代码分析(19)枚举进程以及进程加载模块信息
/*头文件*/ #include #include #include #include /*预处理声明*/ #pragmacomment(lib,"
psapi
.lib") /*函数声明*/ VOIDWINAPIEnumProcess1
junwong
·
2012-03-09 16:00
VC++信息安全编程(8)实现扫描内存,实现内存读写
扫描内存,实现内存读写是杀毒软件必备的功能,这个功能如何实现呢,请见代码实现与分析调用美国大牛写的
PSAPI
.DLL #include"stdafx.h" #include"DoProcess.h" #
junwong
·
2012-03-09 16:00
基于visual c++之windows核心编程代码分析(63)无模块dll进程注射
需要引用
Psapi
.Lib,具体可以百度下载之。
junwong
·
2012-03-09 16:00
C++
Psapi
.h头文件
Psapi
是:PocessStatusAPI,是获取系统状态的函数集合.它会返回以下系统信息:进程信息模块信息设备驱动程序信息进程内存使用信息工作集信息内存映射文件信息包括的函数.ThefollowingarethePSAPIfunctions.EmptyWorkingSet
Wentasy
·
2012-02-26 15:00
C++
工作
image
api
活动
上一页
1
2
3
4
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他