What is the preferred way to interact with WMI using LINQ

I have some projects, and I was wondering if anyone has any feedback. The maturity level of these projects seems low.

+4
source share
1 answer

Linq to WMI looks good. I just downloaded it and looked at it.

It basically wraps the ManagementObjectSearcher class in the System.Management namespace, builds an expression tree using a visitor template, executes your query, and returns IQueryable.

Simple and elegant, code is a joy.

http://linq2wmi.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=15434

+3
source

All Articles