3

我正在尝试运行一个调用 Win 2008 框上的批处理文件的命令。(当我登录Win 2008并单击时,命令运行成功)。

但是,当我使用相同的用户凭据通过 WMI 调用此批处理文件时,批处理不会执行。

我的连接代码是:

ConnectionOptions connOptions = new ConnectionOptions();
connOptions.Impersonation = ImpersonationLevel.Impersonate;
connOptions.EnablePrivileges = true;
connOptions.Username = UserName;
connOptions.Password = Password;

ManagementScope manScope = new ManagementScope(
    String.Format(@"\\{0}\ROOT\CIMV2", ComputerName), connOptions);
manScope.Connect();

ObjectGetOptions objectGetOptions = new ObjectGetOptions();
ManagementPath managementPath = new ManagementPath("Win32_Process");
ManagementClass processClass = new ManagementClass(
    manScope, managementPath, objectGetOptions);

ManagementBaseObject inParams = processClass.GetMethodParameters("Create");

inParams["CommandLine"] = command;
ManagementBaseObject outParams = processClass.InvokeMethod("Create", inParams, null);
Object returnValue = outParams["ReturnValue"];

任何帮助表示赞赏...

4

2 回答 2

0

通过 WMI 在远程计算机上实例化命令时,您需要指定显式凭据。WMI 增强了安全性,但这样做实际上降低了安全性,因为与令牌不同,显式凭据以明文方式传递它们。

于 2012-11-04T03:26:52.120 回答
0

如果 ROOT\CIMV2 设置为服务器上脚本的默认命名空间,那么您只需要以下内容:

ManagementScope manScope = new ManagementScope(
    String.Format(@"\\{0}", ComputerName), connOptions);
manScope.Connect();
于 2013-06-18T13:52:34.900 回答