-->

Where the Microsoft.Management.Infrastructure

2020-07-28 00:04发布

问题:

I need to get hdd info, and I want to use WMI.

example from msdn

using Microsoft.Management.Infrastructure;
...
string Namespace = @"root\cimv2";
string className = "Win32_LogicalDisk";

CimInstance myDrive = new CimInstance(className, Namespace);

I'm using Visual Studio 2015. I've created a console application in solution for testing WMI. There is no Microsoft.Management.Infrastructure, how to add it?

回答1:

Have you added a reference to Microsoft.Management.Infrastructure.dll? (As specified at the top of the MSDN page.)



标签: c# wmi