什么是PowerShell的Get-Cim会话的C#equivelant?

时间:2017-08-25 15:39:20

标签: c# powershell wmi

我想重用CIM会话进行WMI查询。 PowerShell具有Get-CimSession,可以枚举活动的CIM会话以供重用。我在C#中唯一能做的就是查询最后一次已知的CIM会话的计算机属性:

CimSession cimSession1;
cimSession1 = CimSession.Create(computer1);
string str = cimSession1.ComputerName;

并根据需要创建新的CIM会话。

0 个答案:

没有答案