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 ?
Pipelines in PowerShell are slightly different from UNIX style shells - instead of passing string output from one command to the next, PowerShell passes raw .NET object references.
So you'll want to inspect the properties of the objects returned by
Get-WinEvent
- here using theWhere-Object
cmdlet:If you want to inspect which properties are available on a specific object, use the
Get-Member
cmdlet: