Exchange Server で PowerShell コマンドをプログラムで呼び出すアプリケーションがあります。アプリを Exchange オンライン サーバー outlook.office365.com に正常に接続し、個々のコマンドを呼び出すことはできますが、短時間に複数のコマンドを連続して送信すると、サーバーが詰まり、次のメッセージが返されます。
runspace.Close と runspace.Dispose で試してみましたが、効果がありません。
次のメッセージから、60 秒間に最大 5 つの実行空間があることがわかりますが、私のコードでは実行空間を閉じて破棄していますが、その制限は問題になるべきではありません。もちろん、私が何か間違ったことをしている可能性は常にあります。
メッセージ (一部のテキストはドットでマスクされています):
Connecting to remote server failed with the following error message : Fail to create runspace because you have exceeded your budget to create runspace. Please wait for 45 seconds.
Policy: CN=GlobalThrottlingPolicy_....,CN=Global Settings,CN=ExchangeLabs,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=namprd05,DC=prod,DC=outlook,DC=com;
Snapshot: Owner: Sid~NAMPR05A001\.......~WSMan~false
BudgetType: WSMan
ActiveRunspaces: 0/3
Balance: 600000/1800000/-3000000
PowerShellCmdletsLeft: 199/200
ExchangeCmdletsLeft: 9223372036854775807/Unlimited
CmdletTimePeriod: 5
DestructiveCmdletsLeft: 60/Unlimited
DestructiveCmdletTimePeriod: Unlimited
QueueDepth: Unlimited
MaxRunspaces: 5
MaxRunspacesTimePeriod: 60
LastTimeFrameUpdate: 4/23/2013 8:48:20 PM
LastTimeFrameUpdateDestructiveCmdlets: 4/23/2013 8:40:36 PM
LastTimeFrameUpdateMaxRunspaces: 4/23/2013 8:48:08 PM
Locked: False
LockRemaining: 00:00:00 For more information, see the about_Remote_Troubleshooting Help topic
簡略化したコードは次のとおりです (実際はもっと複雑ですが、基本的にはこれだけです)。
private Collection<PSObject> GetUser(string userName, string password)
{
try
{
serverName = "https://outlook.office365.com/powershell-LiveID?PSVersion=2.0"
SecureString pass = new SecureString();
foreach (char x in password.ToCharArray())
{
pass.AppendChar(x);
}
WSManConnectionInfo connectionInfo = new WSManConnectionInfo(
new Uri(serverName), PSNamespace, new PSCredential(userName, pass));
connectionInfo.AuthenticationMechanism = AuthenticationMechanism.Basic;
connectionInfo.SkipCNCheck = true;
connectionInfo.SkipCACheck = true;
CallContext.SetData("WSManConnectionInfo", connectionInfo);
using (Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo))
{
using (PowerShell powershell = PowerShell.Create())
{
try
{
powershell.AddCommand("Get-User");
powershell.AddArgument(userName);
runspace.Open();
powershell.Runspace = runspace;
return powershell.Invoke();
}
catch (Exception e)
{
return null;
}
finally
{
runspace.Close();
runspace.Dispose();
}
}
}
}
catch (Exception e)
{
return null;
}
}
ご意見ありがとうございます。
ボリス