Toplu Event log’larin silinmesi
Merhabalar, Bu makalemizde windows event logların toplu olarak powershell, komut satırı veya vbs script ile silinmesinin Komut satırı ile toplu event log silinmesi için;for /F “tokens=*” %1 in (‘wevtutil.exe el’) DO wevtutil.exe cl “%1” Powershell ile toplu event log silinmesi için aşağıdaki; Get-EventLog -LogName * | ForEach { Clear-EventLog $_.Log } yada wevtutil el |...OKUMAYA DEVAM ET