windows 使用C#在远程计算机上执行批处理并在屏幕上显示

vs3odd8k  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(198)

当我启动一个批处理在远程计算机上使用此代码它运行完美.唯一的问题是,调用的脚本不显示在屏幕上.我想让用户知道,程序正在运行.并可以读取所做的使用批.

  1. ConnectionOptions options = new ConnectionOptions();
  2. options.Username = "user";
  3. options.Password = "password";
  4. options.EnablePrivileges = true;
  5. ManagementScope scope = new ManagementScope($"{\\remotecomputer}\\root\\CIMV2", options);
  6. scope.Connect();
  7. ObjectGetOptions objectGetOptions = new ObjectGetOptions();
  8. ManagementPath managementPath = new ManagementPath("Win32_Process");
  9. ManagementClass processClass = new ManagementClass(scope, managementPath, objectGetOptions);
  10. ManagementBaseObject inParams = processClass.GetMethodParameters("Create");
  11. inParams["CommandLine"] = "cmd /c e:\\tools\\batch.bat >> " + remoteOut + " 2>&1";
  12. ManagementBaseObject outParams = processClass.InvokeMethod("Create", inParams, null);

字符串
如前所述,它工作得很好,并生成文件“remoteOut”,但用户没有看到批处理运行。有没有可能像在Linux上设置“显示”?我不想使用ps命令。
它运行代码,但在屏幕上看不到批处理。

1tu0hz3e

1tu0hz3e1#

你不能-至少,不能直接使用命令行。

MS的Win32_Process.Create()文档指出:
出于安全原因,Win32_Process.Create方法不能用于远程启动交互式进程。
但是,也有一些变通方法-PsExec支持使用-i [session]命令行标志在交互式会话中启动进程。
您可以使用ProcessStartInfo以通常的方式启动PsExec

相关问题