top of page

The Blog
Export more than 100,000 Entra logs at same time
Entra ID has hard-coded limit of 100,000 when downloading sign-in or provisioning logs from Entra Portal. The workaround for this limitation is PowerShell code below, utilizing Graph API and nextLink feature. You need to have at least AuditLog.Read .All Graph API permission and Global Reader Entra Role. Hope you'll find it useful $logsResponse = Invoke-MgGraphRequest -Uri "https://graph.microsoft.com/beta/auditLogs/signins" -Method GET $date = get-date -UFormat "%Y-%m-%d_%H
Jun 11, 20252 min read


How to get Entra sign-in logs via Graph API
Graph API If you need to export Entra ID sign-in logs and include details like UserAgent (which is not included when using native...
Jun 11, 20251 min read
10 Identity Security Metrics Every IT Leader Should Be Tracking in 2025
Identity Is the Core of Modern Security In today’s hybrid cloud environments, identity is the most targeted attack surface . Whether...
Jun 11, 20252 min read


How to add delegated permission grant in Entra
Delegated permission grant (represented by an oAuth2PermissionGrant) are user consented permission you see on 'Permissions' tab in every...
Jun 11, 20252 min read
bottom of page