For organizations managing multiple Windows devices, the Intune admin center provides centralized monitoring of Microsoft Defender signature versions across your entire fleet. This method requires Microsoft Intune licensing and enrolled devices.
Sign in to the Intune admin center at https://endpoint.microsoft.com using your organizational credentials. Navigate to the endpoint protection reporting section:
Reports → Endpoint analytics → Microsoft Defender for Endpoint
Alternatively, access device-specific information through:
Devices → All devices → Select a device → Endpoint protection
The reports display signature version information for each enrolled device, including:
- Current Security Intelligence version
- Last update timestamp
- Update compliance status
- Devices with outdated signatures
Create custom reports by clicking Create report and selecting Microsoft Defender Antivirus as the report type. Configure filters for:
- Signature version older than X days
- Devices with failed updates
- Compliance status by organizational unit
For automated monitoring, use the Microsoft Graph API to query device compliance data:
Connect-MgGraph -Scopes "DeviceManagementManagedDevices.Read.All"
Get-MgDeviceManagementManagedDevice | Select-Object deviceName, lastSyncDateTime, complianceState
Warning: Intune reporting data syncs every 6-24 hours. For real-time signature status, use the device-specific methods on individual machines.
Verification: The Intune dashboard should show your enrolled devices with current signature versions. If devices appear with "Unknown" status, verify they're properly enrolled and communicating with Intune services.