27 articles Exchange 2010 Page 2 / 2

How to restore Exchange Server 2010 Mailbox from DPM Server 2010 Backup

DPM Server uses a combination of transaction log replication and block-level synchronization in conjunction with the Exchange Server VSS Writer to help ensure your ability to recover Exchange data. In this post, I’m explaining the process of how to restore the Exchange Server 2010 mailbox from the DPM Server 2010 backup; when compared with exchange…

remove corrupted or missing public folder database from exchange

  I suspected that perhaps some replicas had been missed by the Management Command – but I was running short of time and really needed to remove the Exchange Installation from the Machine so I thought – perhaps I could just remove the reference to the Public Folder from Active Directory. So I broke out…

Last Error: dns query failed in queue exchange 2007/2010

Firstly, make sure your firewall has an exception for DNS (UDP 53) and SMTP (TCP 25)If you cannot successfully ping the smart host and receive a reponse within a few seconds, I'd suggest clearing the cache of your Internal DNS Server then restarting the DNS Server service on your DC, and restarting Microsoft Exchange Transport…

generate exchange certificate without CA in your organization

New-ExchangeCertificate -domainname webmail.mydomain.com,SRVCASHUB-1,SRVCASHUB-1.mydomain.com,autodiscover.mydomain.com,mail.mydomain.com ###The old certificate is enabled for IIS, POP, IMAP and SMTP. The new certificate generated using the above command is enabled only for POP, IMAP and SMTP – IIS is missing. To enable the certificate for IIS: Enable-ExchangeCertificate -thumbprint "3DA55740509DBA19D1A43A9C7161ED2D0B3B9E3E" -services IIS Remove-ExchangeCertificate -thumbprint "C5DD5B60949267AD624618D8492C4C5281FDD10F"

generate exchange certificate with CA in your organization

New-ExchangeCertificate -GenerateRequest – Domainname mail.mydomain.com, Services.mydomain.com, autodiscover.mydomain.com, webmail.mydomain.com, ServerName -FriendlyName mail.mydomain.com -PrivateKeyExportable: $True -path c:\Cert.req Import-ExchaneCertificate -path c:\certnew2.cer | Enable-ExchangeCertificate -Services IIS, SMTP #delete the existing certificate, which we replaced Remove-ExchangeCertificate -Thumbprint 08AEB1E82FF900AD1EA7E05999E2F10EFAFB10BA