Forum Discussion
JakobRohde
Jul 31, 2017Iron Contributor
List external users and their status
Hi all I desperately need a way to list all external Azure AD users including their status (if they have accepted the invitation or not), and it would be nice to be able to filter on domain. On T...
Aljohn Bonifacio
Jul 31, 2017Iron Contributor
You can use the command below to get the list of all the Office 365 external users (guest users).
Get-MsolUser -All | ? {$_.UserType -eq "Guest"} | Select DisplayName,SignInName | FT
Also, you can use this application to list and export all external users to CSV.
- JakobRohdeAug 01, 2017Iron Contributor
Thanks Aljohn
This gives me a list of all guest users. What I need is a list of only those guest users that have not yet accepted the invitation. Is that possible?
/Jakob
- Aljohn BonifacioAug 01, 2017Iron Contributor
You can check this article as it explains managing access requests and guest users with pending invitation.
- Karen GlynnOct 01, 2018Copper Contributor
Thjat doesn't really cut it. I need to see which guest users have activated their accounts, not look for invitations etc.