WMI 类参考 [英] WMI classes reference

查看:27
本文介绍了WMI 类参考的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下问题:我想使用 WMI 类获取登录用户.所以我尝试了这个:

I have the following problem: I want to get the the logged in user with a WMI class. So I tried this:

    try
    {
        ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROMWin32_LoggedOnUser");
        foreach (ManagementObject queryObj in searcher.Get())
        {
            accounttype += queryObj["Antecedent"];
        }
    }
    catch
    {
        accounttype = "error";
    }

但这不起作用,因为 queryObj 返回对 Win32_Account 的引用!我不知道如何读取这个 Win32_Account 参考的值!

But this don't work because the queryObj returns a reference to Win32_Account! I have no Idea how I can read the values of this Win32_Account reference!

顺便说一句,我知道还有其他方法(比如Environment.UserName,但我想大致了解这些尊敬!

BTW, I know there are other ways ( like Environment.UserName, but I want to generally understand these reverences!

谢谢!

推荐答案

Win32_LoggedOnUser WMI 类返回 WMI 对象路径,这是一个WMI 类实例的唯一 ID,您可以访问该类创建实例的数据到 ManagementObject 对象,然后设置从 ManagementPath 对象.

The Antecedent and Dependent properties of the Win32_LoggedOnUser WMI class returns a WMI Object Path, which is a unique id for a WMI class instance, you can access the data of to this class creating a instance to the ManagementObject object and then setting the property Path obtained from a ManagementPath object.

试试这个样本

using System;
using System.Collections.Generic;
using System.Management;
using System.Text;

namespace GetWMI_Info
{
    class Program
    {

        static void Main(string[] args)
        {
            try
            {
                ManagementScope Scope;
                Scope = new ManagementScope(String.Format("\\\\{0}\\root\\CIMV2", "localhost"), null);

                Scope.Connect();
                ObjectQuery Query = new ObjectQuery("SELECT * FROM Win32_LoggedOnUser");
                ManagementObjectSearcher Searcher = new ManagementObjectSearcher(Scope, Query);

                foreach (ManagementObject WmiObject in Searcher.Get())
                {
                    //Console.WriteLine("{0,-35} {1,-40}","Antecedent",WmiObject["Antecedent"]);// Reference
                    //Console.WriteLine("{0,-35} {1,-40}","Dependent",WmiObject["Dependent"]);// Reference
                    ManagementObject oAntecedent = new ManagementObject();
                    ManagementPath ObjectPath = new ManagementPath((String)WmiObject["Antecedent"]);//Win32_Account 
                    oAntecedent.Path = ObjectPath;
                    oAntecedent.Get();

                    Console.WriteLine("{0,-35} {1,-40}", "Caption", oAntecedent["Caption"]);// String
                    Console.WriteLine("{0,-35} {1,-40}", "Description", oAntecedent["Description"]);// String
                    Console.WriteLine("{0,-35} {1,-40}", "Domain", oAntecedent["Domain"]);// String
                    //Console.WriteLine("{0,-35} {1,-40}", "InstallDate", ManagementDateTimeConverter.ToDateTime((string)WmiObject["InstallDate"]));// Datetime
                    Console.WriteLine("{0,-35} {1,-40}", "LocalAccount", oAntecedent["LocalAccount"]);// Boolean
                    Console.WriteLine("{0,-35} {1,-40}", "Name", oAntecedent["Name"]);// String
                    Console.WriteLine("{0,-35} {1,-40}", "SID", oAntecedent["SID"]);// String
                    Console.WriteLine("{0,-35} {1,-40}", "SIDType", oAntecedent["SIDType"]);// Uint8
                    Console.WriteLine("{0,-35} {1,-40}", "Status", oAntecedent["Status"]);// String
                    Console.WriteLine();    
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(String.Format("Exception {0} Trace {1}",e.Message,e.StackTrace));
            }
            Console.WriteLine("Press Enter to exit");
            Console.Read();
        }
    }
}

这篇关于WMI 类参考的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆