No DNS servers could be retrieved from network adapter

Error message :No DNS servers could be retrieved from network adapter 00000000-0000-0000-0000-000000000000. Check if the computer is connected to a network and Get-NetworkConnectionInfo returns any results. EventSourceName: MSExchangeTransport Knowledge: http://go.microsoft.com/fwlink/?LinkID=67336&id=2BCB35C6-D00D-47BB-B5E0-3D9A76ABE1E0 Computer: Exchangeserver01.Domain.local Impacted Entities (0): Environment : Exchange 2010/Exchange 2013 First troubleshooting step would be to Run Get-NetworkConnectionInfo from Exchange shell to get the result. So […]

How to check the database content index status (Failed) and update the catalog via Powershell

a) This will return a result of all DB with Content Index State  failed. Get-MailboxDatabaseCopyStatus * | where {$_.ContentIndexState -eq “Failed”} b) By using the following command we can update the content index status of all the failed DBs. Get-MailboxDatabaseCopyStatus * | where {$_.ContentIndexState -eq “Failed”} | Update-MailboxDatabaseCopy -CatalogOnly c) Following command will help to […]

Set message delivery settings using exchange shell in 2010

If you are trying to add any user under the message delivery restriction and getting below error you probably want to use the exchange shell  in 2010 to add/remove users from certain distribution groups. It usually throw this error message if you have an invalid user object available on the senders list. Couldn’t find  object […]

Exchange transport service is getting stopped often in Exchange 2010?

In case if you are experiencing a mail flow problem very frequently on your exchange environment because of your Exchange hub transport service is getting stopped; you probably may wanted to check the free disk space as it may be a problem due to the log pile up under this location C:\inetpub\logs\LogFiles\W3SVC1.  Even if you […]