使用 PHP 时 PSEXEC 访问被拒绝

PSEXEC access denied when using PHP

我想从我的服务器检索远程服务器中的处理器数量 运行。 为此,我使用以下命令行检查信息:

C:\Users\Administrator>psexec -accepteula \remote_computer_name -u remote_computer_name\admin -p my_password cmd /C "set number_of_processors"

它 returns 我想要的结果 :

但是当我试图在 PHP 脚本中使用它来检索相同的结果时,它说访问被拒绝。

PsExec v1.98 - Execute processes remotely Copyright (C) 2001-2010 Mark Russinovich Sysinternals - www.sysinternals.com

Access is denied.

Connecting to remote_computer_name... Starting PsExec service on remote_computer_name... Could not start PsExec service on remote_computer_name: Connecting to remote_computer_name... Starting PsExec service on remote_computer_name...

这是我的 PHP 脚本:

<?php
  function executeCmd($cmd,$params,$return)
    {       
      //$resTable = array();
      $resInt = -1;
      exec("$cmd $params",$resTable,$resInt);
      //$resTable=shell_exec($cmd $params);
      //print_r($resTable);
      if($return == 40)// return associative table
        return $resTable;
      if($return == 41)// return int
        return $resInt;
    }

  $cmd    = "psexec";
  $params   = " -accepteula \\remote_computer_name -u remote_computer_name\admin -p password cmd /C \"set number_of_processors\" 2>&1";
  //$res = system($cmd,$params,40);
  $res = executeCmd($cmd,$params,40);

  for($i=0;$i<count($res);$i++)
  {
    print_r($res[$i]);
    echo "</br>";
  }
?>

我在另一对服务器上使用相同的脚本,它运行得非常好。我错过了什么?

终于找到答案了!我只将 -h 参数添加到我的命令行。

-h If the target system is Vista or higher, has the process run with the account's elevated token, if available.