Bulk Export of Azure AD user object with all properties from powershell

Anoop Rayas 1 Reputation point
2021-08-09T06:27:25.083+00:00

Greetings,

I am trying to do Bulk Export of Azure AD user object with all properties from powershell into csv file format. But its keep failing. Please suggest..

With Regards,
AR

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,689 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Sajeetharan 1,641 Reputation points Microsoft Employee
    2021-08-10T04:15:30.09+00:00

    Have you tried something like this?

    Import-Module ActiveDirectory
    Get-ADUser -Filter * -Properties * | export-csv c:\ADusers.csv

    Look at this thread for more details.