A comprehensive suite of productivity tools and cloud services that enhance collaboration, communication, and efficiency. Combining classic Office apps with advanced Microsoft 365 features, it supports both personal and business needs
Hi Farrukh,
You can use this script to read the file and get their information on the server.
import-csv c:\temp\Book1.csv | foreach {get-msoluser -UserPrincipalName $_.UserPrincipalName} | Select-Object UserPrincipalName, DisplayName, ImmutableId, WhenCreated
Let us know if this is what you expected.
Thanks,
Mike