gpt4 book ai didi

c++ - 如何知道设备是否已被用户明确禁用?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:42:35 27 4
gpt4 key购买 nike

使用设备管理器,用户可以明确启用/禁用设备,如下图所示。

enter image description here

对于给定的设备,我想知道它当前是否处于用户禁用/启用状态。

我尝试了以下方法

  1. CM_Get_DevNode_Status(&status, &problem, data.DevInst, 0); 我希望 DN_STARTEDDN_DRIVER_LOADED 的存在会告诉我那。但是即使当操作系统正在加载/卸载驱动程序时,当设备连接/断开连接时,这些也可以为零。例如,已启用并加载了驱动程序的设备。 DN_STARTED 将为 1,但当我们断开设备连接时,在设备条目从设备管理器中删除之前,它会设置为零。
  2. SetupDiGetDeviceRegistryProperty(..., SPDRP_INSTALL_STATE, ...) 我认为 CM_INSTALL_STATE_INSTALLED 状态应该意味着设备已启用。但即使对于禁用的设备,该函数也会返回此状态。
  3. 使用 WMI 我能够获得所需的信息,但我在 PowerShell 中使用了 wmi。我不想使用 wmi,因为它很难在 native c++ 中实现。我使用了以下查询。

    从 Win32_PnPEntity 中选择名称、可用性、ConfigManagerErrorCode、ConfigManagerUserConfig,其中名称 = 'NVIDIA Quadro M1000M'

上面查询中的ConfigManagerErrorCode,如果设置为22,表示设备已被禁用,21表示windows正在移除设备

我正在寻找非 wmi 解决方案。

最佳答案

可以从设备的问题代码中获取信息。我可以找到两种方法来获取它。

  1. 使用SetupDiGetDeviceProperty()查询DEVPKEY_Device_ProblemCode
  2. 使用 CM_Get_DevNode_Status() 问题代码将出现在调用后的第二个参数中。

问题代码 22 (CM_PROB_DISABLED) 表示设备已被用户使用设备管理器或其他此类实用程序明确禁用。

示例代码

#include "stdafx.h"
#include <Windows.h>
#include <SetupAPI.h>
#include <Cfgmgr32.h>
#include <devguid.h>
#include <initguid.h>
#include "devpkey.h"
#include <algorithm>
#include <iostream>

using namespace std;

int main()
{
HDEVINFO hDevInfo = ::SetupDiGetClassDevs(&GUID_DEVCLASS_DISPLAY, NULL, NULL, 0); //only getting for GPUs on the machine

if (INVALID_HANDLE_VALUE != hDevInfo)
{
SP_DEVINFO_DATA data;
data.cbSize = (DWORD)sizeof(data);

for (unsigned int nIndex = 0; ::SetupDiEnumDeviceInfo(hDevInfo, nIndex, &data); nIndex++)
{
ULONG status = 0, problem = 0;
CONFIGRET cr = ::CM_Get_DevNode_Status(&status, &problem, data.DevInst, 0); //after the call 'problem' variable will have the problem code
if (CR_SUCCESS == cr)
{
cout << " problem " << problem <<endl;
if(problem == CM_PROB_DISABLED)
{ /*Do Something*/ }

DEVPROPTYPE propertyType;
const DWORD propertyBufferSize = 100;
BYTE propertyBuffer[propertyBufferSize];
std::fill(begin(propertyBuffer), end(propertyBuffer), BYTE(0));
DWORD requiredSize = 0;

if (SetupDiGetDeviceProperty(hDevInfo, &data, &DEVPKEY_Device_ProblemCode, &propertyType, propertyBuffer, propertyBufferSize, &requiredSize, 0)) //after the call 'propertyBuffer' will have error codes
{
unsigned long deviceProblemCode = *((unsigned long*)propertyBuffer);
cout << " deviceProblemCode " << deviceProblemCode << endl;
if(problem == CM_PROB_DISABLED)
{ /*Do Something*/ }

}
}
}
}
return 0;
}

示例输出

problem 0
deviceProblemCode 0
problem 22
deviceProblemCode 22

在问题中可以看到启用了 Intel(R) HD Graphics 530,禁用了 NVIDIA Quadro M1000M。因此在输出中我们得到了问题代码 0 和问题代码 22 (CM_PROB_DISABLED)。

关于c++ - 如何知道设备是否已被用户明确禁用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47301350/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com