mva migrate to a different office 365 plan

32
Sonja Madsen | SharePoint MVP, Sonjasapps Rob Latino | Program Manager, Microsoft

Upload: sonja-madsen-sharepoint-mvp

Post on 16-Jul-2015

82 views

Category:

Internet


0 download

TRANSCRIPT

Sonja Madsen | SharePoint MVP, Sonjasapps

Rob Latino | Program Manager, Microsoft

Meet Sonja Madsen | @a-somads

• SharePoint MVP– Microsoft partner and vendor

– Owner of Sonjasapps

– Blog about SharePoint 2013 at sp2013.blogspot.com

– Speaker at conferences on SharePoint topics

– Over 10 years with SharePoint

Meet Rob Latino

• Prepare to switch plans

• Switch plans manually

• Switch plan wizard

• Switch with Powershell

• Challenges:– Downtime

– Plan eligible for Switch Plan Wizard

– Custom domain

– Mailboxes

– Office version

– Credit checks

Agenda

Prepare to switch plans

• Review current service health

• Review schedule for planned maintenance

Switch Plans Manually

• Purchase a new plan

• Re-assign the licenses

• Cancel your old plan

Purchase a new plan

Office 365 Admin Center Purchase Services

Reassign the licenses

Cancel your old plan

Switch Plan Wizard

• Eligible plans

• Less than 300 users

Eligible plans

Plans eligible for the Switch plans wizard

Reason for “No switch plans”

Switch plans with Powershell

• Plans with over 300 users are not eligible for Switch Plan Wizard

• Prerequisits– Download and install the Microsoft Online Services Module for

PowerShell

Connect and Gather Information

• Connect

$cred = Get-Credential

Connect-MsolService -Credential $cred

• Review Licenses

Get-MsolAccountSku |ft AccountSkuId

Export and Re-assign Licenses

• Export a list of all users before you start making changes

Get-MsolUser -All | Export-Csv c:\temp\AllUsers.csv

• Re-assign licenses for one user

Get-MsolUser -UserPrincipalName {UserPrincipalName} | Where

{$_.Licenses[0].AccountSkuId -contains "{tenant}:E1"} | Set-

MsolUserLicense -AddLicenses "{tenant}:E3" -RemoveLicenses

"{tenant}:E1"

Re-assign licenses for all users

• Get-MsolUser -All | Where {$_.Licenses[0].AccountSkuId -

contains "{tenant}:STANDARDPACK"} | Set-MsolUserLicense -

AddLicenses "{tenant}:ENTERPRISEPACK" -RemoveLicenses

"{tenant}:STANDARDPACK"

Challenges:

• Downtime, Custom domain

• Office version

• Credit checks

Downtime, Custom Domain

• Custom domain, you’ll have to remove it from Office 365 and

then add it again after you’ve switched plans

• No custom domain: – Takes up to an hour with Switch Plan Wizard

– Admins have no access to O365 Admin portal

Office versions and accounts, Intune

• Different Office versions and accounts

• Old and new Outlook profile

• Reconfigure Intune

Credit Checks

• It can take up to 2 weeks

Summary

• Prepare to switch plans

• Switch plans manually

• Switch plan wizard

• Migrate with Powershell

• Challenges

©2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, Office, Azure, System Center, Dynamics and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.