Format Required using PowerShell.
Step 1: Open Windows PowerShell (Admin) prompt and run one of the code snippets to generate a CSV file. (Change Export path to a location of your choosing)
1)
Application Log
Get-EventLog -logName "Application" -newest 3000 | Select MachineName,TimeGenerated,EntryType,Source,Message | Export-Csv -Path "c:\temp\application.csv" -Force;
2)
System Log
Get-EventLog -logName "System" -newest 3000 | Select MachineName,TimeGenerated,EntryType,Source,Message | Export-Csv -Path "c:\temp\system.csv" -Force;
3)
Security Log
Get-EventLog -logName "Security" -newest 3000 | Select MachineName,TimeGenerated,EntryType,Source,Message | Export-Csv -Path "c:\temp\security.csv" -Force;
Step 2: Upload the file here.
Step 3: Click on the file in the list to view the issues.
Step 4: Delete the file when finished.