1. Install and open the application
Download Log Parser Lizard from the official page, complete the Windows installation and start the application. The current edition is completely free.
2. Choose a data source
Start with a small IIS, CSV, JSON, XML or text file whose content you already understand.
3. Run a broad first query
SELECT TOP 100 *
FROM 'C:\Logs\example.log';4. Filter the result
SELECT TOP 100 *
FROM 'C:\Logs\example.log'
WHERE status >= 400
ORDER BY time_taken DESC;5. Explore and export
Use the result grid to sort, group, filter and summarize returned rows. Export the useful subset when you need supporting evidence.