Hi this is my easy way to export all mailboxes to PST on the Exchange servers. Step1: We have to give our user permission to EXPORT mailboxes. New-ManagementRoleAssignment -role “Mailbox Import Export” -User OUR_USER Step2: Please create folder where you want to save PST files. Step3: Export user names. Get-mailbox|…
How to: Exchange
Hi, Today I will show you how to disable Exchange Cached Mode in Outlook on Terminal Server. Unfortunately we can’t do it using GPO because “Use Cached Exchange Mode for new and existing Outlook profile” only exists in the User tree. Open regedit Go to: HKLM – > Software -> Policies…
Most of our clients are moving to Office 365. I found out that sometimes is really difficult to remove Public Folders. This is easy way to solve it is use ADSI-Edit. Exchange 2010 Open ADSI-Edit and got to configuration Navigate to this path: CN=Configuration,DC=DOMAIN,DC=LOCAL CN=Services CN=Microsoft Exchange CN=EXCHANGE_ORG CN=Administrative Groups…
This is one of my favorite Powershell scripts. Easy way to show how big are Exchange mailboxes and make your boss happy 🙂 This is the result: Copy and past 🙂 $Report=@() $mailbox=Get-mailbox –resultsize unlimited $mailbox| foreach-object{ $DisplayName=$_.DisplayName $SmtpAddress=$_.PrimarySmtpAddress $TotalItemSize=(get-mailboxstatistics –identity $DisplayName ).TotalITemSize $obj=new-object System.Object $obj|add-member -membertype NoteProperty -name “DisplayName”…
Simple like that: Get-Mailbox -resultsize unlimited | Where {$_.Emailaddresses -Match “@my_domain.com”} | Select Name, Emailaddresses If you sure that it is primary smtp address you can write like Get-Mailbox -resultsize unlimited | Where {$_.Emailaddresses -Match “@my_domain.com”} | select name, PrimarySmtpAddress