如何使用wmi在远程计算机上执行调试视图

时间:2014-02-15 11:11:03

标签: c# wmi remote-debugging debugview

我希望在远程计算机上运行Debugview(我有该机器的用户名,密码和ip地址)。我开发了这段代码

object[] theProcessToRun = { "C:\\Dbgview.exe /t /l C:\\debugview1.log" };
            ConnectionOptions theConnection = new ConnectionOptions();
            theConnection.Username = "Username";
            theConnection.Password = "Password";

            ManagementScope theScope = new ManagementScope("\\\\ipaddress\\root\\cimv2", theConnection);
            ManagementClass theClass = new ManagementClass(theScope, new ManagementPath("Win32_Process"), new ObjectGetOptions());
             theClass.InvokeMethod("Create", theProcessToRun);

此代码在后台启动远程计算机上的debugview(可以通过选择所有用户运行的进程选项在taskmanager中查看),但问题是,它没有连接本地主机。

所以任何人都可以建议我改变或以任何其他方式实现我正在做的事情。

编辑:解答

您需要拥有管理权限才能登录远程计算机,以便调试视图自动连接(到本地主机)

0 个答案:

没有答案