A common problem when creating just about any resource in Active Directory, Exchange Online, Azure AD, SharePoint, etc. is life cycle. I see so many customers that have no control over their distribution groups. This is a script that you can use to determine which if your distribution groups are in use, and which are not, by looking at the message trace for the last 90 days.
Continue reading “Script for determining unused distribution groups in Exchange Online”Month: April 2021
Using Microsoft Graph to get all guests from Azure AD, including those with userType set to “Member”
Shortest blogpost that will ever be on this blog. Here is a url you can use to get all guests from your Azure AD, including those you have set userType to “Member” for, for different reasons:
https://graph.microsoft.com/beta/users?$filter=creationType eq 'Invitation' or userType eq 'Guest' or externalUserState eq 'Accepted' or externalUserState eq 'PendingAcceptance'
Script to add Azure AD gallery apps
The Microsoft Graph endpoint for instantiating Azure AD gallery apps is quite new, and I just needed them in order to instantiate 20+ apps based on the GitHub Enterprise Organization template. Here is my code, if someone has use for it 🙂
I have left out “how to get an access token”. The permissions required is Application.ReadWrite.All.
Continue reading “Script to add Azure AD gallery apps”Using Azure AD External Identities to power self service sign-in for a web site
With Azure AD External Identities, Microsoft is bringing some of the Azure AD B2C features to “regular” Azure AD, and it is now generally available (GA). With these features, you can add public self service sign up-baed authentication flows to your services, using your existing Azure AD.
Continue reading “Using Azure AD External Identities to power self service sign-in for a web site”