Migration Exchange 2010 to 2013 tips – SOLVED Password prompts from Windows XP


The problem here is that the CertPrincipalName msstd:mail.domain.com does not match the common name in the certificate that is *.mail.com. So in order to fix this we usually runs the command  Set-OutlookProvider -Identity EXPR -CertPrincipalName msstd:*.domain.com. This force the CertPrincipalName to be msstd:*.domain com which match common name. Voila! For more information about the OutlookProvider settings and how to use it, read:

Set-OutlookProvider -Identity EXPR -CertPrincipalName msstd:*.domain.com


Get-MailboxStatistics -Database “Test Database mbx” | where {$_.DisconnectReason -eq “SoftDeleted”} | foreach {Remove-StoreMailbox -Database $_.database -Identity $_.mailboxguid -MailboxState SoftDeleted}


Get-MailboxStatistics –Database “Test Database mbx” | Where-Object {$_.DisconnectReason –eq “Softdeleted”} | ForEach {Remove-StoreMailbox –Database $_.database –identity $_.mailboxguid –MailboxState Softdeleted}


dpejic has written 85 articles

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>