Forum Discussion
Saved a File to a local drive
Jeff Harlow Do you currently have MDATP deployed? Using Advanced Hunting, you're able to do some investigations on if a file was downloaded to a USB. It may not be what you're looking to do but could be a good workaround or at least, provide more information than you originally had.
In addition, my colleague Jacques van Zijl authored the the following query:
Files saved to USB:
DeviceFileEvents
| where FolderPath !contains @"c:\" and
FolderPath !contains @"\\" and
FolderPath !contains "HarddiskVolume" and
FolderPath !contains @"sms\pkg" and
FolderPath !contains @"sms\bin" and
FolderPath !contains @"SCCM_Deployments"and
DeviceName !contains "arcade" and
FileName !contains ".mui"
| project Timestamp, InitiatingProcessAccountName, DeviceName, ActionType, FileName, FolderPath,InitiatingProcessFolderPath, InitiatingProcessFileName, InitiatingProcessCommandLine
| sort by Timestamp desc
- PeterRisingJun 25, 2020MVP
Really great shout, I never thought of that. Definitely going to give that a try myself.