Event Log Readers
ABOUT
Confirming Membership
C:\> net localgroup "Event Log Readers"Searching Security Logs
PS C:\> wevtutil qe Security /rd:true /f:text | Select-String "/user"
# Do same but from other user
PS C:\> wevtutil qe Security /rd:true /f:text /r:share01 /u:rio /p:rio@123 | findstr "/user"Searching Logs with Get-WinEvent
Get-WinEventPS C:\> Get-WinEvent -LogName security | where { $_.ID -eq 4688 -and $_.Properties[8].Value -like '*/user*'} | Select-Object @{name='CommandLine';expression={ $_.Properties[8].Value }}Last updated