使用php exec运行powershell脚本的问题

时间:2013-04-10 11:20:26

标签: php windows iis powershell exec

我在运行有效的PowerShell脚本时遇到麻烦(从cmd测试)。我希望脚本测试用户是否存在于office 365上,但身份验证在cmd中执行正常时不会通过php传递。

服务器是Windows 2008 R2,IIS 7.5,PHP 5.4 NTS。

我是普通的linux用户,我很难让这个MS工作时间大,所以任何建议都非常感激。

这是我的powershell脚本:

$username = "adminuser@my_domain"
$password = "password"
$secstr = New-Object -TypeName System.Security.SecureString
$password.ToCharArray() | ForEach-Object {$secstr.AppendChar($_)}
$cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $secstr

Import-Module MSOnline -force
Connect-Msolservice -Credential $cred

Get-MsolUser -UserPrincipalName student@my_domain

和php部分:

exec("powershell -Command C:/inetpub/wwwroot/office365/test.ps1 < NUL", $output);
echo '<pre>';
print_r ($output);
echo '</pre>';

输出结果:

Array
(
    [0] => Connect-MsolService : Exception of type 'Microsoft.Online.Administration.Automa
    [1] => tion.MicrosoftOnlineException' was thrown.
    [2] => At C:\inetpub\wwwroot\office365\test.ps1:8 char:20
    [3] => + Connect-Msolservice <<<<  -Credential $cred
    [4] =>     + CategoryInfo          : OperationStopped: (:) [Connect-MsolService], Mic
    [5] =>    rosoftOnlineException
    [6] =>     + FullyQualifiedErrorId : 0x80070002,Microsoft.Online.Administration.Autom
    [7] =>    ation.ConnectMsolService
    [8] => 
)

1 个答案:

答案 0 :(得分:1)

我找到了解决办法。

尝试:

从源

复制名为MSOnlineMSOnline Extended的文件夹
  

C:\ Windows \ System32下\ WindowsPowerShell \ V1.0 \模块\

到文件夹

  

C:\的Windows \ Syswow64资料\ WindowsPowerShell \ V1.0 \模块\

然后在PS中运行导入模块MSOnline,它将自动获取模块:D