2

我正在使用 C# 开发 Office 365 插件并尝试使用以下 PowerShell 命令:

$newLicense = New-MsolLicenseOptions -AccountSkuId example:ENTERPRISEPACK -DisabledPlans SHAREPOINTWAC,MCOSTANDARD,SHAREPOINTENTERPRISE
Set-MsolUserLicense -UserPrincipalName test@example.com -AddLicenses "example:ENTERPRISEPACK" -LicenseOptions $newLicense

在 PS 中,这很好用。在 C# 中,我无法运行此命令。这是我的 C# 代码,来自PowerShellInvoker类:

var iss = InitialSessionState.CreateDefault();
iss.ImportPSModule(new[] { MsOnline });
iss.ThrowOnRunspaceOpenError = true;
_runspace = RunspaceFactory.CreateRunspace(iss);
_runspace.Open();
_invoker = new RunspaceInvoke(_runspace);

我尝试了很多方法:

scriptText_ = "$newLicense = New-MsolLicenseOptions -AccountSkuId {1} -DisabledPlans SHAREPOINTWAC,MCOSTANDARD,SHAREPOINTENTERPRISE\n"+
"Set-MsolUserLicense -UserPrincipalName test@example.com -AddLicenses \"example:ENTERPRISEPACK\" -LicenseOptions $newLicense");

我使用以下方法来执行其他完美运行的命令:

_invoker.Invoke(scriptText_);

并且:

var pipeline = _runspace.CreatePipeline();
pipeline.Commands.AddScript(scriptText_);
return pipeline.Invoke(); // and getting back the variable

我还尝试在 Runspace 对象中添加变量:

_runspace.SessionStateProxy.SetVariable ("newLicense", pipeline.Invoke());

但是该命令不起作用,并且没有返回错误。我不太了解 PowerShell 环境(我是这方面的初学者)。

提前感谢您提供的所有帮助。

4

1 回答 1

4

我怀疑您遇到了 PowerShell 引擎未向您显示的错误。试试这种方法来观察非终止错误:

var ps = PowerShell.Create();
ps.AddScript(@"Get-ChildItem c:\xyzzy");
var results = ps.Invoke();
if (ps.HadErrors)
{
    foreach (var errorRecord in ps.Streams.Error)
    {
        Console.WriteLine(errorRecord);
    }
}
foreach (var result in results)
{
    Console.WriteLine(result);
}
于 2013-01-21T19:32:08.990 回答