Skip to Content
Operations & SupportReporting & Dashboards

Reporting & Dashboards

Welche Reports erstellen wir fĂĽr den Kunden (und fĂĽr uns selbst)? KPIs, Intune Built-in Reports und Custom Reports via Graph API.


KPI-Ăśbersicht (Concat Standard)

KPIZielwertMessungFrequenz
Compliance Rate> 95%% compliant Geräte / GesamtgeräteWöchentlich
Enrollment Rate100%% enrollte Geräte / Soll-GeräteBis Rollout-Ende
Patch-Stand< 30 Tage hinter aktuell% Geräte auf aktuellem Patch LevelMonatlich
Defender Status100% aktiv% Geräte mit aktivem DefenderWöchentlich
Stale Devices0 (>90 Tage)Geräte ohne Sync seit 90+ TagenMonatlich
App Install Success> 98%Erfolgreiche App-Installationen / GesamtPro App
Autopilot Success Rate> 95%Erfolgreiche Enrollments / VersuchePro Wave
Token Expiry> 30 TageVerbleibende Tage (APNs, VPP, ADE)Wöchentlich

Intune Built-in Reports

Device Reports

ReportPfad im Admin CenterInhalt
All DevicesDevices → All devicesGeräteliste mit Status, OS, Last Sync
Device ComplianceReports → Device compliance → Policy complianceCompliance-Status pro Policy
Configuration StatusReports → Device configuration → Assignment statusProfil-Zuweisung pro Gerät
Enrollment FailuresDevices → Monitor → Enrollment failuresFehlgeschlagene Enrollments
Autopilot DeploymentsDevices → Monitor → Windows Autopilot deploymentsAutopilot-Status pro Gerät

Custom Reports via Graph API

Für Reports, die über die Built-in Funktionalität hinausgehen:

# Weekly Compliance Summary Report Connect-MgGraph -Scopes "DeviceManagementManagedDevices.Read.All" $devices = Get-MgDeviceManagementManagedDevice -All $summary = $devices | Group-Object ComplianceState | Select-Object @{N='Status';E={$_.Name}}, Count, @{N='Percentage';E={[math]::Round(($_.Count / $devices.Count) * 100, 1)}} Write-Host "`n📊 Weekly Compliance Report - $(Get-Date -Format 'dd.MM.yyyy')" -ForegroundColor Cyan Write-Host "Gesamtgeräte: $($devices.Count)" $summary | Format-Table -AutoSize # Export als CSV für den Kunden $summary | Export-Csv "C:\Reports\compliance-$(Get-Date -Format 'yyyy-MM-dd').csv" -NoTypeInformation

Reporting-Rhythmus (Concat Standard)

FrequenzReportEmpfänger
WöchentlichCompliance Rate, Stale Devices, Token ExpiryIT-Admin
MonatlichManagement Summary (Compliance, Patch, Defender, Incidents)IT-Leitung
QuartalsweiseTrend-Report (KPI-Entwicklung ĂĽber 3 Monate)Management
Ad-hocIncident Reports, Audit-AntwortenSituationsabhängig

Querverweise

ThemaVerwandte Seite
PowerShell Report-SkriptePowerShell Repo
Endpoint Analytics DatenEndpoint Analytics
Token-Monitoring (APNs, VPP)Apple Business Manager
Compliance PoliciesKonfiguration
Last updated on