Note You can identify this problem if you telnet to the Exchange Server 2007 SP1 server and issue the following commands:
- a1 Capability
- a2 Authenticate PLAIN
- <base64 encoded authentication string>
Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.
View products that this article applies to.
$mailbox = "username"
$account = "domain\username"
$pwd = "real_password"
$authstring = $mailbox +[char]0 + $account + [char]0 + $pwd
write-host "string: <$authstring>"
$encoded = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($Authstring))
write-host "Encoded: ($Encoded)"
Keywords: KB969436, kbqfe, kbexpertiseinter, kbfix, kbsurveynew