Skip to content

Instantly share code, notes, and snippets.

@fluggelgleckheimlen
Last active December 8, 2021 12:41
Show Gist options
  • Save fluggelgleckheimlen/e0046fdc215b60cfd8a864183478fbe1 to your computer and use it in GitHub Desktop.
Save fluggelgleckheimlen/e0046fdc215b60cfd8a864183478fbe1 to your computer and use it in GitHub Desktop.
Clear All Event Logs with PowerShell
if ($env:ExchangeInstallPath) {
echo "DO NOT run on Exchange Server"
}
else {
wevtutil el | Foreach-Object {wevtutil cl "$_"}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment