我尝试使用的WinForms C#到远程计算机连接。
我的代码:
private void Form1_Load(object sender, EventArgs e)
{
var connection = new ConnectionOptions();
connection.Username = "xx";
connection.Password = "xx";
var scope = new ManagementScope("\\\\111.111.111.22:6000\\root\\CIMV2", connection);
scope.Connect(); // Exception occurs here..
}
我得到下面的误差在线scope.Connect();
错误:
类型的未处理的异常“System.Runtime.InteropServices.COMException”发生在System.Management.dll
其他信息:RPC服务器不可用。 (从HRESULT异常:0x800706BA)
任何帮助将不胜感激。