How to import Users from Azure without importing groups?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 10:16 PM
How to import Users from Azure without importing groups?
The docs link here - https://learn.microsoft.com/en-us/entra/identity/saas-apps/servicenow-provisioning-tutorial
talks 2 options and in both the options 'Groups' is mentione.
I dont want to import Groups.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 10:28 PM
Hi @Suggy ,
The Get-AzureADUser cmdlet allows to find and extract user accounts from the Azure Active Directory. The cmdlet only comes with a couple of parameters that we can use:
Filter – Retrieve multiple objects based on a oDate v3 query
ObjectId – Return specific user based on UPN or ObjectID
SearchString – Get all users that match the searchString
All – Retrieve all results
Top – Retrieve only specified amount
You can also control the imports from transform map. The integration will bring all info from OUs you can apply condition on transform map using transform script to create or update record only for users and you can skip / ignore the group records.
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....