Public Folder Messages are Blank — Message bodies appearing blank in messages within public folders? Posted on February 16, 2012 by dpejic We have a large number of public folders used to hold e-mail messages. I have found recently that some, but not all, folders have messages that do not have any content. These messages did have content when they were moved/copied to the folders. SOLUTION: In my case problem is solved by switching off integration of…
Exchange standard vs enterprise licence Posted on February 16, 2012 by dpejic Exchange 2010 Feature Details Exchange 2010 Server Licenses: Existing features have been significantly enhanced and new features have been added to both of the Exchange Server editions. The following table provides a feature breakdown for each server edition of Exchange Server 2010: Feature Standard Server Edition Enterprise Server Edition Mailbox Databases 1-5 databases 6-100 databases…
Forward Email to externel mail address in exchange 2010/2007 Posted on February 16, 2012 by dpejic To forward mail that arrived to us to a foreign address, first we need to make exchange mail contact that refers to an external email and then activate forwarding. How to do that? Folow next lines Create a MailContact Create a MailContact using the EMC: Expand Recipeint Configuration | Mail Contact In the Action…
How to restore Exchange Server 2010 Mailbox from DPM Server 2010 Backup Posted on February 16, 2012 by dpejic 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…
EMail\Database Disaster Recovery Posted on February 16, 2012 by dpejic This page contains the information related to E-Mail Recovery, Database Recovery and Disaster Recovery scenarios, all the information posted below are related only to Exchange Server 2010 and Outlook 2010. Following are the Topics that are going to be discussed here 1. How to Recover a Shift Deleted E-Mail in outlook 2010 By default 14…
Managing Mailbox Database in Exchange Server 2010 Posted on February 16, 2012 by dpejic Lot of changes has been introduced in the server level architectures of Exchange Server 2010, but Microsoft continues to use the Exchange Store as the storage platform and the .edb file as the database file for exchange server 2010 Also, this Topic Includes How to Create a New Mailbox Database How to Mount and Dismount…
remove corrupted or missing public folder database from exchange Posted on February 16, 2012 by dpejic 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…
How to Enable / Configure Circular Logging in Exchange Server 2007 Posted on February 16, 2012 by dpejic Circular Logging feature was available in all Exchange previous versions. This feature allows Exchange server to overwrite transaction log files after the old transaction log data has been committed to the database. By default, this feature is disabled. The limitation of this feature is that in case of disaster, it will not be possible to…
Enabling Expired Password changes through Outlook Web App Posted on February 16, 2012 by dpejic This feature was introduced in Exchange Server 2007 SP3. It allows any new user with the setting User must change password at next logon to use OWA to change an expired password. Log on to the Client Access Server Click on Start, Run and type in regedit and click on OK Expand HKEY_LOCAL_Machine Expand System…
Creating Scheduled Tasks for Exchange 2010 PowerShell Scripts Posted on February 16, 2012 by dpejic There are many reasons why one would like to run an Exchange powershell .ps1 script as a scheduled task. In this post I will share with you how to achieve this on both Microsoft Exchange 2007 and Exchange 2010. Obviously you should start by creating your .ps1 script for this article we will assume the…
Last Error: dns query failed in queue exchange 2007/2010 Posted on February 16, 2012 by dpejic 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…
Removing a dead Exchange 2007 server from Organization – AD and Console Posted on February 16, 2012 by dpejic This will require some manual editing of the Configuration container. Done incorrectly you can destroy your domain, but that being said… Run ADSIEdit.msc or ldp.exe. Expand or go to configuration then follow path of CN=configuration,DC=company,dc=com -> Services -> Microsoft Exchange -> organization -> Admin groups -> name of the group -> servers. Right click…
How to renew a self signed certificate in Exchange Server 2007 Posted on February 16, 2012 by dpejic When a new Exchange Server 2007 role is installed on a computer the server automatically generates a self signed certificate to be used with services like transport (SMTP), POP, IIS (OWA and Exchange Web Services) and IMAP. This certificate expires right after the completion of one year from the date server was installed or the…
Create new owa virtual directory Posted on February 16, 2012 by dpejic Prior to this we must first make a site called "clients" New-OWAVirtualDirectory –OwaVersion: Exchange2007 –Name "owa" –WebSiteName "clients" Set-OwaVirtualDirectory -identity "owa (clients)" -DefaultClientLanguage 3098 This is if you want to set the default one language, so that clients do not need to choose the first time they login to OWA 3098 is code for Serbian…
generate exchange certificate without CA in your organization Posted on February 16, 2012 by dpejic 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"