Mailbox Dumpster using PowerShell

How to Clear Mailbox Dumpster using PowerShell

In this Article, Will show you how to clear Dumpster for the mailboxes. which is majorly helpful when you are doing mailbox moving from O365 to On-Premises and vice versa. Let’s begin, Run the below command to see the size of the Dumpster(Deletions) Folder size which stores the deleted items of the mailbox which are […]

Exchange Migration 2010 to Exchange 2013-Part 7:Moving Namespaces

Exchange Migration 2010 to Exchange 2013-Part 7:Moving Namespaces

Moving Outlook Anywhere Run the below commands in Exchange server 2010 using Exchange Powershell, $Exchange2013HostName = “mail.windowstechpro.com” Get-ExchangeServer | Where {($_.AdminDisplayVersion -Like “Version 14*”) -And ($_.ServerRole -Like “*ClientAccess*”)} | Get-ClientAccessServer | Where {$_.OutlookAnywhereEnabled -Eq $True} | ForEach {Set-OutlookAnywhere “$_\RPC (Default Web Site)” -ClientAuthenticationMethod Basic -SSLOffloading $False -ExternalHostName $Exchange2013HostName -IISAuthenticationMethods NTLM, Basic} Get-ExchangeServer | Where {($_.AdminDisplayVersion […]