PHP psexec shell命令不被识别为内部或外部命令

时间:2016-12-07 21:29:21

标签: php shell psexec

我在php中使用此命令

exec("psexec \\\\192.168.1.3 -u myAccount -p myPassword -i cmd.exe /c START c:\file.doc 2>&1",$output); 
var_dump($output);

但结果是错误的

 array(2) {
  [0]=>
  string(62) "'psexec' is not recognized as an internal or external command,"
  [1]=>
  string(31) "operable program or batch file."
}

1 个答案:

答案 0 :(得分:1)

确保psexec命令在您的控制台上正常运行。

请参阅 Click Here

确保用户权限和路径。