WMI使用友好输出枚举Win32_GroupUser

时间:2016-07-03 21:22:23

标签: c# account wmi-query

我试图枚举本地计算机上的所有现有组。

我尝试使用wmi:

string _class = "Win32_GroupUser";
string namespace = "\\\\.\\ROOT\\cimv2";

ManagementClass _class = new ManagementClass(namespace + ":" + class );    

foreach (ManagementObject _object in _class.GetInstances())
{
    richTextBox1.AppendText((_object["GroupComponent"].ToString()));
}

输出示例:

  

\ DESKTOP-2MSGC9J \根\ CIMV2:Win32_Group.Domain =" DESKTOP-2MSGC9J",名称=" Utilisateurs   du journal de performance"

在此输出中,只有组名Name="Utilisateurs du journal de performances"对我很重要。

这是一种只在这个_object中返回该元素的wmi查询吗?

可能有foreach的另一个_object

1 个答案:

答案 0 :(得分:0)

在从wmi获取对象后,我发现使用-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath]; cell.textLabel.text = [self.todoArray objectAtIndex:indexPath.row]; cell.textLabel.numberOfLines = 0; // allow multiple lines showing up return cell; } 的方式很脏。

substring