1

HA Exchange 環境で複数の powershell コマンドを順番に呼び出すことに問題があります (単一の開発ホストではすべて正常に動作します)。Exchangeコマンドのみに関するものである限り、複数のコマンドをパイプすることで回避策を使用しました(実行は同じノード上で行われました)。すべて問題ありませんでした。私のコード:

string casUri = "cas1.srv.net/Powershell?serializationLevel=Full";
string credentialUserName = "User";
string credentialUserPassword = "secret";
string newOU = "thenewou";
string baseOU = "OU=root,DC=srv,DC=net";         
        System.Security.SecureString passwd = new System.Security.SecureString();
        foreach (char c in credentialUserPassword) {
            passwd.AppendChar(c);
        }
        PSCredential credential = new PSCredential(credentialUserName, passwd);

        WSManConnectionInfo connectionInfo = new WSManConnectionInfo(
                new Uri(casUri),
                "http://schemas.microsoft.com/powershell/Microsoft.Exchange",
                credential);

        connectionInfo.AuthenticationMechanism = AuthenticationMechanism.Default;
        runspacePool = RunspaceFactory.CreateRunspacePool(1, 5, connectionInfo);
        runspacePool.Open();

        powershell = PowerShell.Create();
        Command command;
            command = new PSCommand();
            command.AddCommand("New-ADOrganizationalUnit");
            command.AddParameter("Path", baseOU);
            command.AddParameter("Name", newOu);
            command.AddParameter("DisplayName", "My new OU");
            powershell.Commands = command;
        powershell.Invoke();

        // ... another AD commands: Set-ADForest, New-AcceptedDomain (work fine)
        // v--- trouble
            command = new PSCommand();
            command.AddCommand("New-GlobalAddressList");
            command.AddParameter("Name", "GAL.Name");
            command.AddParameter("RecipientContainer", newOu + "," baseOU);
            powershell.Commands = command;
        powershell.Invoke();

シングルホスト環境では問題ありません。このような HA では、別のコマンドが別のホストで実行されます。

   [myApp]---[CAS load balancer]---[CAS-1..CAS-N]---[EX-1..EX-N]

これにより例外が発生します。

 Active Directory operation failed on DC2.srv.net. This error is not retriable.          
 Additional information: The name reference is invalid.
 This may be caused by replication latency between Active Directory domain controllers.
 Active directory response: 000020B5: AtrErr: DSID-03152804, #1:
            0: 000020B5: DSID-03152804, problem 1005 (CONSTRAINT_ATT_TYPE), data 0, Att 9b7f0292 (msExchSearchBase)

いくつかのコマンドで単一のリモートシェルとの永続的な接続を強制する方法がわかりません。解決策はありますか?

4

1 に答える 1

0

これを試しましたか?

command.AddParameter("DomainController", "Your Domain Contorller FQDN");
于 2013-11-26T08:23:35.053 に答える