Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am wondering why there ain't no button on my azure console where I can grant admin consent:
while it should look like this:
Well the obvious answer is - you do not have permissions to do that.
To grant admin consent to permissions on Microsoft Graph and Azure AD
Graph, you need global administrator privileges.
https://learn.microsoft.com/en-us/azure/active-directory/manage-apps/configure-user-consent#prerequisites
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 months ago.
Improve this question
Currently I'm using azure account along with 2 more users also using the same. But multifracture authentication (MFA) is enable on my mobile number. When ever other 2 member are try to login I need approve MFA request. Instead of getting request to only one person, Is there any possibility to receive individual members for MFA, when ever they login to azure account.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 11 months ago.
Improve this question
Is there any way to find duplicate users present in Azure AD? How can I find them directly from Azure portal. THanks
You should have criteria based on you can find the dublicate users. Assuming you are trying to find the dublicate user based on employeeId. You can use the Azure Active Directory Module for Windows PowerShell to check Azure AD for duplicate attributes.
Get-AzureADUser -Filter "employeeId eq 'M10584114'" |Select-Object DisplayName,UserPrincipalName
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am working on an Azure B2C custom policy. I would like to insert a custom consent page when the user signs in asking him for his consent to allow us to access his data etc. within the custom policy XML How is this possible?
You need to use a custom policy, there is a sample here: https://github.com/azure-ad-b2c/samples/tree/master/policies/service-consent
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
My web app uses ASP.NET MVC and out of box account model for registration. Azure SQL Server table where new sign-ups are stored is AspNetUsers.
How can I setup email alerts when a new user signs up on my web site?
Thanks.
You can make a Logic App to poll the table on the database periodically and add an action item to send an email as explained here or make a RESTful call.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have the user id of a user. I want to fetch the user details from B2C Active Directory with the user id. Is it possible to do that?
Thanks
yes it is possible
> B2C Get-User <user-object-id>
> B2C Get-User <filter-query-expression>
for more details look into search user
https://learn.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-devquickstarts-graph-dotnet