alberto.igbinedion@ons.gsi.gov.uk Target environment have enough capacity How is users and mailboxes provisioned During the migration, where should new mailboxes be created How will the migration process work? What requirements are there? =================Login to owa https://owa.ons.statistics.gov.uk/owa/peter.benton@ons.gov.uk/#path=/calendar =================Login to ECP https://owa.ons.statistics.gov.uk/ecp/peter.benton@ons.gov.uk/#path=/calendar =============================================Connect to exchange poershell. 1. Set-ExecutionPolicy RemoteSigned 2. $UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://fa1rvwapxx398/PowerShell/ -Authentication Kerberos -Credential $UserCredential Import-PSSession $Session 3. add-pssnapin microsoft.exchange.management.powershell.e2013 4. cd c:\scripts =======Getting Powershell profile path location $profile.CurrentUserCurrentHost Result: \\NDATA11\igbena$\My Documents\WindowsPowerShell\Microsoft.PowerShellISE_profile.ps1 ========Set Limit per organizationunit This example uses the Get-Mailbox cmdlet to find all the mailboxes in the Marketing organizational unit, and then uses the Set-Mailbox cmdlet to configure these mailboxes. The custom warning, prohibit send, and prohibit send and receive limits are set to 200 megabytes (MB), 250 MB, and 280 MB respectively, and the mailbox database's default limits are ignored. This command can be used to configure a specific set of mailboxes to have larger or smaller limits than other mailboxes in the organization. ============================ Get-Mailbox -OrganizationalUnit "Marketing" | Set-Mailbox -IssueWarningQuota 209715200 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 293601280 -UseDatabaseQuotaDefaults $false