Nikita
Nikita

Reputation: 1082

Where the Microsoft.Management.Infrastructure

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?

Upvotes: 1

Views: 14280

Answers (1)

Richard
Richard

Reputation: 109015

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

Upvotes: 6

Related Questions