1

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

服务器是 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] => 
)
4

1 回答 1

1

我找到了解决办法。

尝试:

从源复制调用的文件MSOnlineMSOnline Extended

C:\Windows\System32\WindowsPowerShell\v1.0\Modules\

到文件夹

C:\Windows\SysWOW64\WindowsPowerShell\v1.0\Modules\

然后在 PS 中运行 Import-Module MSOnline,它会自动获取模块:D

于 2013-09-10T00:35:12.930 回答