Hate to say it but in my case none of the tips/ideas/etc posted on this subject worked for me, none of the command listed here worked.
They run, no errors, just an empty prompt, no output, as if it ran successfully but there was no data to output!!!
I even opened every .evtx file inside C:\Tools\chainsaw\EVTX-ATTACK-SAMPLES\Lateral Movement and did a search for \\PRINT’ and no luck, no results!!
A farily easy task make sure u read every thing
command : Get-WinEvent -Path ‘C:\Tools\chainsaw\EVTX-ATTACK-SAMPLES\Lateral Movement*.evtx’|Where-Object{$_.Message -like “\Print”}|Select-Object TimeCreated,Message|Format-Table -AutoSize
Just my own little tip. Using Powershell ISE to generate my commands helped immensely because I could build onto the command by piping after I understood it worked and what it was doing. Also, understanding that the new network share Event ID is 5142. So you structure the command to target all the evtx files in the directory by using the “path” switch and a wildcard. Running this will output every event from all of the logs which is too much information. If you follow the module and pipe the command to Where-Object you can target the “Id” field and isolate on Event ID 5142.