The action ‘Set-DistributionGroup’, ‘RequireSenderAuthenticationEnabled’, can’t be performed on the object ‘[Your Distribution Group]’ because the object is being synchronized from your on-premises organization. This action should be performed on the object in your on-premises organization. Today I was trying to reset the password for one AWS account. We are using…
Exchange
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|…
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…
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