Hi,
I'm trying to read the event log for security audit for all users except two, but is it possible to do that with the -notlike
operator? It's something like that:
Get-EventLog -LogName Security | where {$_.UserName -notlike @("*user1","*user2")}
I have it working for a single user, like:
Get-EventLog -LogName Security | where {$_.UserName -notlike "*user1"}
Thanks, Pascal