Description: This query searches the downloads folder of all computers looking for .iso files. Can be changed to any file type or folder also.
What The Data Shows: Device, File if found, location if found
SQL:
Select *
FROM FILE
Where file.path like 'C:\users\%\Downloads\%%'
AND file.filename like '%.iso'