handbook/tools/5.Machine/2.Windows/General/Hide/CLEAR-LOGS.md
2024-08-31 01:07:22 +02:00

41 lines
1.9 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## Windows
**Method 1: Clear Windows Event Logs Using Event Viewer**
Press the Windows + R keys to open the Run dialog, type **eventvwr.msc** and click OK to [open Event Viewer](https://www.top-password.com/blog/7-ways-to-access-event-viewer-in-windows-10/).
![](https://www.top-password.com/blog/wp-content/uploads/2020/08/eventvwr.png)
On the left sidebar of Event Viewer, expand “Windows Logs” and right-click one of the events categories, then select **Clear Log** from the menu that comes up.
![](https://www.top-password.com/blog/wp-content/uploads/2020/08/clear-log-from-event-viewer.png)
Click either the “**Save and Clear**” or the **Clear** button to confirm.
![](https://www.top-password.com/blog/wp-content/uploads/2020/08/save-event-logs-before-clearing.png)
The event logs will be cleared immediately.
**Method 2: Clear Windows Event Logs Using Command Prompt**
[Open an elevated Command Prompt window](https://www.top-password.com/blog/open-elevated-command-prompt-from-standard-user-in-windows/). Copy and paste the following command into the Command Prompt, and then hit Enter.
`for /F "tokens=*" %1 in ('wevtutil.exe el') DO wevtutil.exe cl "%1"`
![](https://www.top-password.com/blog/wp-content/uploads/2020/08/clear-windows-event-logs-via-cmd.png)
This will delete all types of Windows event logs at once.
**Method 3: Clear Windows Event Logs Using PowerShell**
Press the Windows logo key + X to open the Quick Link menu, and then click on “**Windows PowerShell (Admin)**“.
![](https://www.top-password.com/blog/wp-content/uploads/2017/06/windows-powershell-admin.png)
To clear all event logs in Windows 10, just enter the below command and press Enter.
`Get-EventLog -LogName * | ForEach { Clear-EventLog $_.Log }`
![](https://www.top-password.com/blog/wp-content/uploads/2020/08/clear-windows-event-logs-via-powershell.png)
Thats it!