Search code examples
powershelloffice365hybrid

Need a msol command like set-mailbox -emailaddresspolicyenabled for hybrid server


We have office 365 and a hybrid server. It is set to sync 1 way from hybrid to o365.

We are wanting to run

Set-mailbox  "$usertodisable@domain.com" -EmailAddressPolicyEnabled $true

on the hybrid server.

The problem is the hybrid server doesn't support/have the -mailbox commands. It has the -msol commands. I can not find an msol command that changes the emailaddresspolicyenabled. I also don't see a module to load for -mailbox.

We are running this command directly off the server itself. Any help would be great. Thank you and have a great day.


Solution

  • Use the Set-RemoteMailbox cmdlet to modify remote mailboxes. A remote mailbox is a mail user in Active Directory that's associated with a mailbox in the cloud-based service.

    So what you are searching for seamed to be:

    Set-RemoteMailbox -Identity "$usertodisable@domain.com" -EmailAddressPolicyEnabled $True