C++实现“扫描检测硬件改动”
Posted sherlock-merlin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++实现“扫描检测硬件改动”相关的知识,希望对你有一定的参考价值。
这里需要用到cfgmgr32.h,参考了网上好几篇博文。
#include <windows.h> #include <stdio.h> #include <cfgmgr.h> #pragma comment(lib,"setupapi.lib") int main() { DEVINST devInst; CONFIGRET status; status = CM_Locate_DevNode(&devInst, NULL, CM_LOCATE_DEVNODE_NORMAL); if (status != CR_SUCCESS) { printf("CM_Locate_DevNode failed: %x\n", status); return FALSE; } status = CM_Reenumerate_DevNode(devInst, 0); if (status != CR_SUCCESS) { printf("CM_Reenumerate_DevNode failed: %x\n", status); } return 0; }
网上的文章基本上没提到要引入lib,我用VS2010测试会报错,提示“...error LNK2019: 无法解析的外部符号 [email protected]”、“...error LNK2019: 无法解析的外部符号 [email protected]”
然后继续查资料,提到要引入lib,按照操作了,vs2010又提示错误“无法打开文件 cfgmgr32.lib” 随后在stackoverflow找到答案了,参考 https://stackoverflow.com/questions/27178969/why-cant-i-find-cfgmgr32-lib-in-the-windows-sdk
以上是最终版,经测试在设备管理器里卸载某设备,执行该程序可以实现等同扫描硬件改动的效果。
参考链接:
https://stackoverflow.com/questions/33420994/windows-usb-device-refresh-in-c-c
https://docs.microsoft.com/en-us/windows/desktop/devinst/cfgmgr32-h
https://bbs.csdn.net/topics/30248104
以上是关于C++实现“扫描检测硬件改动”的主要内容,如果未能解决你的问题,请参考以下文章