see if anything here helps; https://appuals.com/audit-events-hav...the-transport/
it could be as simple as clearing all Event Log entries (fingers crossed).
a quick command to clear out the Event Logs is to start an elevated command prompt and type [COLOR=rgb(226, 80, 65)]powershell and hit Enter.
then copy/paste this - [COLOR=rgb(226, 80, 65)]Get-EventLog -LogName * | where {$.Entries.Count -gt 0} | foreach {Clear-EventLog $.Log}[/COLOR][/COLOR]
it could be as simple as clearing all Event Log entries (fingers crossed).
a quick command to clear out the Event Logs is to start an elevated command prompt and type [COLOR=rgb(226, 80, 65)]powershell and hit Enter.
then copy/paste this - [COLOR=rgb(226, 80, 65)]Get-EventLog -LogName * | where {$.Entries.Count -gt 0} | foreach {Clear-EventLog $.Log}[/COLOR][/COLOR]
Comment