Hi @sushma Kumari , thanks for the question. Please let me know if the following steps work for you:
To disable the notification setting, you can use the Azure AD PowerShell module. Here are the steps:
- Open PowerShell as an administrator.
- Install the Azure AD PowerShell module by running the following command:
Install-Module AzureAD
. - Connect to your Azure AD tenant by running the following command:
Connect-AzureAD
. - Run the following command to disable the notification setting:
Set-AzureADDirectorySetting -Id <ID> -Values @{NotificationsEnabled=$false}
.
To bulk add users you can follow this document. By doing this you shouldn't need to worry about the approval process.
Please let me know if you have any questions and I can help you further.
If this answer helps you please mark "Accept Answer" so other users can reference it.
Thank you,
James