摘要: 手动创建单进程: 下面通过一个实例来分别演示进程的创建函数. #include <windows.h> #include <stdio.h> BOOL WinExec(char *pszExePath, UINT uiCmdShow) { UINT uiRet = 0; uiRet = ::WinE 阅读全文
posted @ 2020-05-27 20:25 lyshark 阅读(1515) 评论(0) 推荐(0)
摘要: 枚举注册表启动项: 通过添加注册表启动项,可以很方便地完成自启动,常用的启动位置有CurrentVersion,BootExecute,Active Setup. #include <stdio.h> #include <Windows.h> void Enum_Regedit(HKEY Reg_R 阅读全文
posted @ 2020-05-27 20:24 lyshark 阅读(2094) 评论(0) 推荐(0)