在远程计算机上执行过程C#

时间:2018-07-24 13:04:52

标签: c# wmi remoting

我通过远程计算机上的WMI连接。

用户名和密码设置正确。

var options = new ConnectionOptions();
servicePath = "\\\\Testserver\\root\\cimv2";
options.EnablePrivileges = true;
options.Username = username;
options.Password = pwd;
serviceScope = new ManagementScope(servicePath, options);
serviceScope.Connect();

这是我要在远程计算机上运行的代码序列

Process process = new Process();
process.StartInfo.FileName = "diskpart.exe";
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.StartInfo.RedirectStandardInput = true;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
process.StandardInput.WriteLine("list volume");
process.StandardInput.WriteLine("exit");
string output = process.StandardOutput.ReadToEnd();
process.WaitForExit();

// extract information from output
string table = output.Split(new string[] { "DISKPART>" }, StringSplitOptions.None)[1];
var rows = table.Split(new string[] { "\n" }, StringSplitOptions.None);
for (int i = 3; i < rows.Length; i++)
{
    if (rows[i].Contains("Volume"))
    {
        int index = Int32.Parse(rows[i].Split(new string[] { " " }, StringSplitOptions.None)[3]);
        string label = rows[i].Split(new string[] { " " }, StringSplitOptions.None)[8];
        Console.WriteLine($@"Volume {index} {label}:\");
    }
}

如果我要像这样通过wmi调用进程...

object[] theProcessToRun = { "diskpart" };
using (var managementClass = new ManagementClass(serviceScope, new ManagementPath("Win32_Process"), new ObjectGetOptions()))
{
managementClass.InvokeMethod("Create", theProcessToRun);
}

我可以调用该过程,但没有可能移交我想在此过程中执行的命令...

如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

您可以使用脚本作为包含您的命令的命令行参数的一部分来传递。

参考:https://www.computerhope.com/diskpart.htm

另外,您应该使用cmd将输出重定向到文件,因为您也应该直接获取输出。

对于脚本,请确保使用其他计算机/用户有权访问的unc。对于输出文件,请确保使用其他机器/用户可以写入并可以通过该程序读取的unc。