Forum Discussion
alwaysLearner
May 24, 2023Iron Contributor
How to get all the properties of Azure AD account with PowerShell?
I was looking for ways to get ALL the properties of Azure AD account with PowerShell. Turns out Get-AzADUser (Az module) and Get-AzureADUser (AzureAD module, obsolete?) returns different results. F...
- May 24, 2023try this
Get-MsolUser –UserPrincipalName email address removed for privacy reasons | FL
alwaysLearner
May 25, 2023Iron Contributor
elieelkarkafi Thanks. The Get-MsolUser is another module now. How many modules are there to work with Azure AD?
And another interesting thing is Get-MsolUser returns "isBlackBerryUser" which is whether or not the user has a BlackBerry device. Why?
Now real question is, what data each user account has and is there a way to get ALL that data? I mean all the data that a user account has.
May 25, 2023
the MS online module allows to connect to Azure AD as well.
if the user is using his account on his mobile device , it will shows you that this device associated with this user
use the Get-MsolUser with the FL to list all the data associated with this user
if the user is using his account on his mobile device , it will shows you that this device associated with this user
use the Get-MsolUser with the FL to list all the data associated with this user
- May 25, 2023
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily.