我正在使用 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 环境(我是这方面的初学者)。
提前感谢您提供的所有帮助。