guyrleech

Find Process Termination Events

Nov 15th, 2025
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.42 KB | Cybersecurity | 0 0
  1. ## Get Process Termination events looking for specific processes via the event properties which are used to create the message
  2.  
  3. get-winEvent -filterhash @{ ProviderName = '*security-audit*' ; id = 4689 ; StartTime = '08:00' } -Oldest | where { $_.properties[6].value -match 'pwsh|terminal' -and $_.properties[4].value -ne 0 }|select TimeCreated,@{n='Process';e={$_.Properties[6].value}},@{n='Exit Code';e={$_.properties[4].value}}
Advertisement
Add Comment
Please, Sign In to add comment