Skip to content

Instantly share code, notes, and snippets.

@nicolonsky
Created September 5, 2018 06:46
Show Gist options
  • Save nicolonsky/d7fa175c0e8c92f8815e112dea64ad9f to your computer and use it in GitHub Desktop.
Save nicolonsky/d7fa175c0e8c92f8815e112dea64ad9f to your computer and use it in GitHub Desktop.
Check Windows Defender Scan Events
Get-WinEvent -LogName "Microsoft-Windows-Windows Defender/Operational" | where {$_.ID -eq 1000} | Export-Csv "c:\mphistory.csv" -NoTypeInformation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment