It seems like in powershell,
echo ASDF | Select-String ASDF
outputs the obvious string, ASDF
.
However, if i attempt to look at WinEvents, and look for an output, i.e.
Get-WinEvent -ListLog * | Select-String antrea
It seems as if the raw text is not scanned.
Whats the right way to use Select-STring as if it were a standard unix Grep ?