skip to Main Content

Powershell – Get-AzureADAuditSignInLogs multiple filters

I'm trying to Get last signin date for Global Admins $role = Get-AzureADDirectoryRole | Where-Object {$_.displayName -eq 'Global Administrator'} $admins = @(Get-AzureADDirectoryRoleMember -ObjectId $role.ObjectId | select DisplayName, UserPrincipalName) Foreach ($admin in $admins){ $upn = $admin.UserPrincipalName $signons = Get-AzureADAuditSignInLogs -Filter "UserPrincipalName…

VIEW QUESTION

Azure Apim Bearer token

Hi guys im following the next tutorial from azure: https://learn.microsoft.com/en-us/rest/api/apimanagement/current-ga/subscription/create-or-update?tabs=HTTP&tryIt=true&source=docs [Azure create or update suscriptions] I already made it work,but i dont know from where comes from the Bearer token that the example uses Can anybody explain to me how…

VIEW QUESTION

Include the EmployeeID as claims in tokens in Azure AD

I need to add the employeeid as claim notification in token, I used the tutorial of this link: https://learn.microsoft.com/en-us/azure/active-directory/develop/active-directory-claims-mapping#include-the-employeeid-and-tenantcountry-as-claims-in-tokens I did all steps, but my token is not returning the employeeid: I did this configuration with graph api, where I…

VIEW QUESTION
Back To Top
Search