The security log is now full (Windows 11 Only)

Anonymous
2022-12-20T07:02:25+00:00

Hi all,

Need your help, all devices that i monitor using windows 11 will hit the error (The security log is now full - Event ID 1104.) Need your advise for solve this problem

Temporary solution

  • I clear log and overwrite in event viewer but still happen back on the next day.

Thanks.

Windows for home | Windows 11 | Accounts, profiles, and login

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

64 answers

Sort by: Most helpful
  1. Anonymous
    2023-11-02T16:47:35+00:00

    I've been seeing this across quite a number of Windows 11 devices for months and haven't been able to find a lasting fix as of yet. While not ideal, my temporary fix is running the following PowerShell script daily against the Windows 11 devices. It backups up the Security logs and then clears them:

    $Log = "Security"

    $Log_Path = "C:\Windows\Logs"

    if (!(Test-Path -Path $Log_Path))

    {

    *New-Item -ItemType directory -Path $Log\_Path*
    

    }

    $logdate = Get-Date -format yyyyMMddHHmm

    $destination = $Log_Path + $Log + $logdate + ".evtx"

    Write-Host "Backing up $log log."

    wevtutil epl $log $destination

    Write-Host "Clearing the $log file from Event Viewer."

    WevtUtil cl $log

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2023-10-31T15:59:22+00:00

    I do this process almost weekly. The settings don't stick.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2023-01-11T20:07:49+00:00

    Nothing seems to have fix it. I tried the registry, GPO for the domain. It will fill up and bomb out.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2022-12-20T13:48:54+00:00

    Yes also done do that but still happening again..clear log and overwrite.

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2022-12-20T13:20:07+00:00

    Hi Muhammad,

    Thanks for getting back. You also applied the settings in properties? The same issue happened?

    Was this answer helpful?

    0 comments No comments