我需要获取硬盘信息,我想使用WMI。
来自msdn的例子
using Microsoft.Management.Infrastructure;
...
string Namespace = @"root\cimv2";
string className = "Win32_LogicalDisk";
CimInstance myDrive = new CimInstance(className, Namespace);
我正在使用Visual Studio 2015
。我在解决方案中创建了一个console application
来测试WMI。没有Microsoft.Management.Infrastructure,如何添加它?