Bottom Line: It is safe to delete .etl trace log files in LogFiles\WMI. ETW logs track performance diagnostic sessions and are safe to clear when troubleshooting is complete.
What is the LogFiles\WMI Folder?
Located at C:\Windows\System32\LogFiles\WMI\ and C:\Windows\System32\LogFiles\WMI\RtBackup, this directory stores Event Tracing for Windows (ETW) trace sessions (.etl) generated by Windows Autologger, Sysmain, and performance diagnostics tools.
Can You Delete ETW Log Files?
✅ Yes, safe to delete.
- Recreates automatically: Active tracing sessions will generate fresh
.etlfiles as needed. - Safe cleanup: Clears gigabytes of obsolete trace dumps.
How to Delete ETW Trace Logs
Command Prompt (Admin)
net stop sysmain
del /f /q /s C:\Windows\System32\LogFiles\WMI\*.etl
net start sysmain
Discussion
Loading authentication...