From f3ae21ade0ecaef5f906eff82d74bcd812c20ddc Mon Sep 17 00:00:00 2001 From: P6g9YHK6 <17877371+P6g9YHK6@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:34:12 +0000 Subject: [PATCH] Update ./scripts/Checks/Last errors logs.ps1 --- scripts_staging/Checks/Last errors logs.ps1 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts_staging/Checks/Last errors logs.ps1 b/scripts_staging/Checks/Last errors logs.ps1 index 8424b4b2..55e1f306 100644 --- a/scripts_staging/Checks/Last errors logs.ps1 +++ b/scripts_staging/Checks/Last errors logs.ps1 @@ -24,7 +24,8 @@ 10016 safe to ignore https://learn.microsoft.com/en-us/troubleshoot/windows-client/application-management/event-10016-logged-when-accessing-dcom - + 36874 to ignore + Fixing the issue would be more dangerous than leaving it be it would require blocking tls 1.2 and forcing 1.1 with unsafe cyphers and loosing connection to devices that do not support 1.1 .CHANGELOG 04.12.24 SAN added id to ignore in comma separeted variable @@ -36,8 +37,8 @@ #> -$defaultEventIds = @(10016) #add value comma separeted -$defaultKeywords = @("gupdate") #add value comma separeted +$defaultEventIds = @(10016,36874) +$defaultKeywords = @("gupdate","anotherkeyword") $debug = [System.Environment]::GetEnvironmentVariable("DEBUG") $filterIdEnv = [System.Environment]::GetEnvironmentVariable("FILTER_ID")