How to Export Windows Event Logs with PowerShell Script
The below script creates a .evt file which can be used with the Windows Event log Viewer. # Config $logFileName = “Application” # Add Name of the Logfile (System, Application, etc) $path = “C:\temp\” # Add Path, needs to end with a backsplash # do not edit $exportFileName = $logFileName + (get-date -f yyyyMMdd) + … Read more