I tried the following code to get the mailbox from an exchange server.I am encountering issue while running the program
static void Main(string[] args)
{
string user = "Domain\\username";
SecureString passwd = new SecureString();
foreach (char c in "Password")
{
passwd.AppendChar(c);
}
PSCredential cred = new PSCredential(user, passwd);
WSManConnectionInfo ConnInfo = new WSManConnectionInfo(new Uri(liveIdconnectionUri), "http://schemas.microsoft.com/powershell/Microsoft.Exchange", cred);
ConnInfo.AuthenticationMechanism = AuthenticationMechanism.Kerberos;
ConnInfo.MaximumConnectionRedirectionCount = 2;
//ConnInfo.ProxyAccessType = System.Management.Automation.Remoting.ProxyAccessType.AutoDetect;
Runspace ExchangeRunspace = System.Management.Automation.Runspaces.RunspaceFactory.CreateRunspace(ConnInfo);
PowerShell powershell = PowerShell.Create();
PSCommand command = new PSCommand();
command.AddCommand("Get-Mailbox");
command.AddParameter("Identity", user);
powershell.Commands = command;
// open the remote runspace
ExchangeRunspace.Open();
// associate the runspace with powershell
powershell.Runspace = ExchangeRunspace;
// invoke the powershell to obtain the results
powershell.Invoke();
Collection<PSObject> results = powershell.Invoke();
foreach (PSObject obj in results)
{
PSMemberInfoCollection<PSPropertyInfo> propInfos = obj.Properties;
Console.WriteLine("********************");
foreach (PSPropertyInfo propInfo in propInfos)
{
string propInfoValue = (propInfo.Value == null) ? "" : propInfo.Value.ToString();
Console.WriteLine("{0} --> {1}", propInfo.Name, propInfoValue);
}
}
Console.ReadLine();
}
I get the following error while running the above code
Connecting to remote server failed with the following error message : WinRM cannot process the request. The following error occured while using Kerberos authentication: There are currently no logon servers available to service the logon request.
Possible causes are:
-The user name or password specified are invalid.
-Kerberos is used when no authentication method and no user name are specified.
-Kerberos accepts domain user names, but not local user names.
-The Service Principal Name (SPN) for the remote computer name and port does not exist.
-The client and remote computers are in different domains and there is no trust between the two domains.
After checking for the above issues, try the following:
-Check the Event Viewer for events related to authentication.
-Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
Note that computers in the TrustedHosts list might not be authenticated.
-For more information about WinRM configuration, run the following command: winrm help config. For more information, see the about_Remote_Troubleshooting Help topic."
Even when I run the command 'New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri $liveIdconnectionUri -credential "[email protected]" -authentication kerberos', I get the same error.
Any pointer to solve this would be really helpful.Thanks in advance.