I have below scripts which able to pull out all our user's profiles with Manager. I need help on how to further enhance this to include
user's "employeeID" , & "managerUPN"
Get-AzureADUser -All $true |
Select-Object *,@{label="Manager";expression={(Get-AzureADUserManager -ObjectId $_.ObjectID).displayname}} |
Export-Csv "C:\temp\All_UsersProfiles.csv"