Book Image

Microsoft Office 365 - Exchange Online Implementation and Migration - Second Edition

By : David Greve, Ian Waters
Book Image

Microsoft Office 365 - Exchange Online Implementation and Migration - Second Edition

By: David Greve, Ian Waters

Overview of this book

Organizations are migrating to the cloud to save money, become more efficient, and empower their users with the latest technology. Office 365 delivers all of this in a reliable, fast, and ever-expanding way, keeping you ahead of the competition. As the IT administrator of your network, you need to make the transition as painless as possible for your users. Learn everything you need to know and exactly what to do to ensure your Office 365 Exchange online migration is a success! This guide gives you everything you need to develop a successful migration plan to move from Exchange, Google, POP3, and IMAP systems to Office 365 with ease. We start by providing an overview of the Office 365 plans available and how to make a decision on what plan fits your organization. We then dive into topics such as the Office 365 Admin Portal, integration options for professionals and small businesses, integration options for enterprises, preparing for a simple migration, performing a simple migration, and preparing for a hybrid deployment. Later in the book, we look at migration options for Skype for Business and SharePoint to further help you leverage the latest collaborative working technologies within your organization.
Table of Contents (20 chapters)
Microsoft Office 365 – Exchange Online Implementation and Migration - Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
10
Deploying a Hybrid Infrastructure – Exchange Hybrid

Configuring server-to-server authentication


Earlier in the chapter, I said that I hope you like PowerShell. Well, here is why. Unfortunately, we don't have the space here to go through every command in detail. However, open up PowerShell and enter each line, pressing enter after each, and if all goes well you will be ready to start configuring hybrid search. You will need to change the following variables to match your environment:

$spcn="*.office365lab.co.uk"
$spsite=Get-Spsite http://sharepoint
$cerPath = "c:\Office365LabSTS.cer"
$pfxPath = "c:\Office365LabSTSCert.pfx"
$pfxPass = "DJ989we..wefds908*"

Once you have updated the variables, you are ready to run the script:

//IMPORT MODULES
Add-PSSnapin Microsoft.SharePoint.PowerShell
Import-Module Microsoft.PowerShell.Utility
Import-Module MSOnline -force
Import-Module MSOnlineExtended -force
Import-Module Microsoft.Online.SharePoint.PowerShell -force
enable-psremoting
//CONNECT TO TENANT
new-pssession
$cred=Get-Credential
Connect-MsolService...