Convert .etl trace log file into readable txt file

gaolei 206 Reputation points
2020-12-15T07:24:33.483+00:00

Hi Heroes,

Just curious, is there has some easy ways to convert the .etl trace log into readable text files?
I have seen some private tools to view .etl trace log before, but I'm not a programmer, just wondering is there has some easier ways to approach this so that I can do some troubleshooting things when necessary.
Thanks in advance...

Windows Server Management
Windows Server Management
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.Management: The act or process of organizing, handling, directing or controlling something.
421 questions
0 comments No comments
{count} votes

Accepted answer
  1. Sunny Qi 10,896 Reputation points Microsoft Vendor
    2020-12-16T03:37:33.127+00:00

    Hi @gaolei ,

    Thanks for posting in Q&A platform.

    May I know if the .etl file is Windows update log?

    • If yes

    Please run the following command in PowerShell to convert ETL files related Windows update to a readable WindowsUpdate.log on desktop. And then I would suggest to open this file with Notepad or Notepad++.

    Get-WindowsUpdateLog

    48560-image1.jpg

    48573-image2.jpg

    • If not

    You could save the trace log files of type .etl on your device. And then please open Event Viewer and go to Action menu and choose the option "Open saved log".

    48583-image3.jpg

    Select Trace Log files (*.etl)

    48584-image4.jpg

    Locate to the file you saved and click Open

    48585-image5.jpg

    Select Yes, for easier to navigate and manipulate, Event viewer will convert the .etl file into event log format

    48524-image6.jpg

    Insert Description and then click OK

    48586-image7.jpg

    Then you can read the content of the .etl log files in Save logs of Event Viewer.

    48611-image8.jpg

    Best Regards,
    Sunny

    ----------

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. gaolei 206 Reputation points
    2020-12-16T06:41:42.407+00:00

    Thanks!! exactly what I need.