Exchange 2016 Hybrid deployment – Part oneExchange 2016 Hybrid deployment – Part twoExchange 2016 Hybrid deployment – Part three Now we are ready to Hybrid our Exchange server 2016. Before proceed, take in mind to modify the fallowing IE settings, otherwise the Exchange Hybrid Deployment will not start. : Under Tools > Internet Options > …
Tag: exchange 2016
Exchange 2016 Hybrid deployment – Part two
Exchange 2016 Hybrid deployment – Part oneExchange 2016 Hybrid deployment – Part twoExchange 2016 Hybrid deployment – Part three Now we have the AdConnect in “staging-mode” and we need to create some rules to import only the object that we need. Before continue, see this guide to understand the staging mode before go live with …
Exchange 2016 Hybrid deployment – Part one
Exchange 2016 Hybrid deployment – Part one Exchange 2016 Hybrid deployment – Part two Exchange 2016 Hybrid deployment – Part three Fallowing my recent post (https://marcoschiavon.net/migrate-from-exchange-2010-13-to-exchange-2016-part-four/) where we leaved our environment just upgrade/migrated to Exchange 2016 now we want to deploy an Office 365 hybrid deployment . Before we start, there are several requirements to …
Migrate from Exchange 2013 to Exchange 2016 – Part four
Migrate from Exchange 2013 to Exchange 2016 – Part one Migrate from Exchange 2013 to Exchange 2016 – Part two Migrate from Exchange 2013 to Exchange 2016 – Part three Migrate from Exchange 2013 to Exchange 2016 – Part four At this point we have migrated all the things and we are ready do decommission …
Migrate from Exchange 2013 to Exchange 2016 – Part three
Migrate from Exchange 2013 to Exchange 2016 – Part one Migrate from Exchange 2013 to Exchange 2016 – Part two Migrate from Exchange 2013 to Exchange 2016 – Part three Migrate from Exchange 2013 to Exchange 2016 – Part four At this point we have : one Exchange server 2013 one Exchange server 2016 all …
Migrate from Exchange 2013 to Exchange 2016 – Part two
Migrate from Exchange 2013 to Exchange 2016 – Part one Migrate from Exchange 2013 to Exchange 2016 – Part two Migrate from Exchange 2013 to Exchange 2016 – Part three Migrate from Exchange 2013 to Exchange 2016 – Part four Now we have installed our first Exchange 2016 and all virtual directories are still pointed …
Migrate from Exchange 2013 to Exchange 2016 – Part one
Migrate from Exchange 2013 to Exchange 2016 – Part one Migrate from Exchange 2013 to Exchange 2016 – Part two Migrate from Exchange 2013 to Exchange 2016 – Part three Migrate from Exchange 2013 to Exchange 2016 – Part four This is a simple and synthetic guide to implement your first Exchange 2016 into your …
Manage Office 365 global spam filter
First, connect to your tenant Get-HostedContentFilterPolicy |fl We need to manage the AllowedSenderDomains field. Issue this command to see the situation … Get-HostedContentFilterPolicy |fl AllowedSenderDomains If you want to expant it do this: Get-HostedContentFilterPolicy | select -ExpandProperty AllowedSenderDomains To filter it and show only the domains list use this command: Get-HostedContentFilterPolicy | select -ExpandProperty AllowedSenderDomains …
Users cannot connect to POP3 or IMAP4 on Exchange Server 2013 or Exchange Server 2016
A customer call me with a problem downloading emails with POP3s from his Exchange server 2013. This was the error from his application server: [04/09/2018][15:15][xxxxx](101764): CSvMailbox::ControllaCasella – Logon: fatture.xxxxxx@xxxxxxxx.it, Mailbox: fatture.xxxxxx@xxxxxxxx.it, [04/09/2018][15:15][xxxxx](101764): Operation: Logon – Error: 0x80004005– xxxxxxx.xxxxxxxSSLPopsException: Remote host disconnected during SSL negotiation. After a quick check in with the eventviewer with no results, I switched to the Exchange’s …
How to rebuild an Exchange server 2016 Search Index?
open cli and input this command: Get-MailboxDatabaseCopyStatus *|sortname|Selectname,status,contentindexstate stop these services: Stop-Service MSExchangeFastSearch Stop-Service HostControllerService locate the path of the db : Get-MailboxDatabase Get-MailboxDatabaseDB01\SRVCOM |selectEdbFilePath delete the GUID folder : now restart the services start-Service MSExchangeFastSearch start-Service HostControllerService and issue this command Get-MailboxDatabaseCopyStatus * | sort name | Select name,status,contentindexstate As you see, the indexing process is …