Forum Discussion
jahongir abdurahmonov
May 24, 2023Brass 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
eliekarkafy
May 24, 2023MVP
try this
Get-MsolUser –UserPrincipalName email address removed for privacy reasons | FL
Get-MsolUser –UserPrincipalName email address removed for privacy reasons | FL
jahongir abdurahmonov
May 25, 2023Brass Contributor
eliekarkafy 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.
- eliekarkafyMay 25, 2023MVPthe 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- eliekarkafyMay 25, 2023MVP
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.