Forum Discussion
marktait19
Mar 21, 2024Copper Contributor
List of End of Life OS and Software in MS Defender
Hi. In MS Defender, is it possible to get a report of devices which are End of Life (eg. Windows Server 2003) along with any end of line/out of support software (eg. .net 1.1, or specific apps) ,...
- Mar 30, 2024
marktait19 Try this Advanced Hunting Query
DeviceTvmSoftwareInventory
| where isnotempty(EndOfSupportStatus)
| summarize count() by SoftwareVendor,SoftwareName,EndOfSupportStatus, EndOfSupportDateThat gives you the high level summary.
Then if you want a list of the specific devices that are running unsupported versions of Windows 10, you can run this query:
DeviceTvmSoftwareInventory| where isnotempty(EndOfSupportStatus) and SoftwareName == "windows_10"| join kind=inner( DeviceInfo)on DeviceName| summarize count() by DeviceName, SensorHealthState, OSDistribution, OSVersion, OSBuild
Joe Stocker
Mar 30, 2024Bronze Contributor
marktait19 Try this Advanced Hunting Query
DeviceTvmSoftwareInventory
| where isnotempty(EndOfSupportStatus)
| summarize count() by SoftwareVendor,SoftwareName,EndOfSupportStatus, EndOfSupportDate
That gives you the high level summary.
Then if you want a list of the specific devices that are running unsupported versions of Windows 10, you can run this query:
DeviceTvmSoftwareInventory
| where isnotempty(EndOfSupportStatus) and SoftwareName == "windows_10"
| join kind=inner
( DeviceInfo
)
on DeviceName
| summarize count() by DeviceName, SensorHealthState, OSDistribution, OSVersion, OSBuild