我正在使用Active Directory进行项目,但我遇到了麻烦:
在Visual Studio中,我可以成功在Active Directory中创建新帐户。之后,我想在Exchange Server上启用电子邮件。当程序和该Exchange服务器都在同一台计算机上时,这种方法很有效。
但是当我在用户计算机上安装程序而Exchange Server在另一台计算机上时,我无法连接到Exchange Server。
我在Google上找到了一个我不太了解的可能解决方案:
PSCredential credential = new PSCredential("Administrator@domain.local", securePwd);
WSManConnectionInfo connectionInfo = new WSManConnectionInfo(new Uri
("http://exchangetestbox:5985/wsman"),
"http://schemas.microsoft.com/powershell/Microsoft.Exchange", credential);
connectionInfo.AuthenticationMechanism = AuthenticationMechanism.Kerberos;
Runspace runspace = RunspaceFactory.CreateRunspace(connectionInfo);
如何获取URI变量?我也不明白:liveIdconnectionUri