I'm trying to quickly show all events from the last ~day in window's event log which contain a certain string in power shell.
I've found powershell commands for listing events, but I basically want to "GREP" them for specific text.
I need to use powershell because the target is Windows Server 2016 Hyper-V but I think it would also be quite useful to be able to quickly search recent events on any machine with powershell.
To show available logs, I run:
PS C:\Users\Administrator> Get-EventLog -List
Max(K) Retain OverflowAction Entries Log ------ ------ -------------- ------- --- 20,480 0 OverwriteAsNeeded 1,113 Application 20,480 0 OverwriteAsNeeded 0 HardwareEvents 512 7 OverwriteOlder 0 Internet Explorer 20,480 0 OverwriteAsNeeded 0 Key Management Service 512 7 OverwriteOlder 1,539 Microsoft-ServerManagementExperience 20,480 0 OverwriteAsNeeded 28,667 Security 20,480 0 OverwriteAsNeeded 4,857 System 15,360 0 OverwriteAsNeeded 3,654 Windows PowerShell In this example, my target Log is called Application
I can print the last 24 hours of log to console with:
Get-EventLog -LogName system -after (Get-Date).AddDays(-1) I tried filtering the output using Select-String but that never matched any lines.