From 86fadccc6ce0a513ef68414cca6a5431dba87f09 Mon Sep 17 00:00:00 2001 From: Gabe Date: Tue, 5 Aug 2025 16:14:39 +0000 Subject: [PATCH] Upload files to "Fix Scripts" --- Fix Scripts/Fix - AV Module Install Failing.ps1 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Fix Scripts/Fix - AV Module Install Failing.ps1 diff --git a/Fix Scripts/Fix - AV Module Install Failing.ps1 b/Fix Scripts/Fix - AV Module Install Failing.ps1 new file mode 100644 index 0000000..c903bfb --- /dev/null +++ b/Fix Scripts/Fix - AV Module Install Failing.ps1 @@ -0,0 +1,14 @@ +Stop-Service "Windows Agent Maintenance Service" +Stop-Service "Windows Agent Service" +Stop-Service "AutomationManagerAgent" + +$file = "C:\Program Files (x86)\N-able Technologies\Windows Agent\config\AVDefenderConfig.xml" +$find = "3" +$replace = "0" +(get-content $file -raw) -replace $find, $replace | out-file $file + +(get-content $file -raw) -match $replace + +Start-Service "Windows Agent Maintenance Service" +Start-Service "Windows Agent Service" +Start-Service "AutomationManagerAgent" \ No newline at end of file