Link to home
Start Free TrialLog in
Avatar of Gaston Mbey
Gaston MbeyFlag for Cameroon

asked on

AD Attributes that are changed for a Migrated USer from On premisses to O365

Hello Experts

Are they attributes that are changed after a Unser is migrated from On premisses to Office 365 in a Hybrid Scenario

If yes what are the attributes

Rgd
Avatar of Michelangelo
Michelangelo
Flag of Italy image

It depends on your setup (i.e. attributes writeback in aadconnect)
See here
https://blogs.technet.microsoft.com/dkegg/2014/08/27/ad-attributes-that-are-changed-when-a-mailbox-moves-to-office-365/

But also you can check by running the following cmdlet before and after the move

Get-aduser -filter {userprincipalname -like "myusr*"} -properties *
ASKER CERTIFIED SOLUTION
Avatar of Todd Nelson
Todd Nelson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
So you can probably do this to get o365 accounts
Get-ADUser -Filter * -Properties msExchRemoteRecipientType | where {$_.msExchRemoteRecipientType -eq 4} 

Open in new window

Avatar of Gaston Mbey

ASKER

Your list seems  to be the correct One