From c8224c91e591e12cdbeeb3a31c0e5adc4b1ea221 Mon Sep 17 00:00:00 2001 From: Dmitry Nefedov Date: Mon, 19 Dec 2022 15:09:22 +0300 Subject: [PATCH] Update Sophia.psm1 --- src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 b/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 index d8ce6493..4f4815e3 100644 --- a/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 +++ b/src/Sophia_Script_for_Windows_11/Module/Sophia.psm1 @@ -300,13 +300,14 @@ function Checks # Checking services try { - $services = Get-Service -Name Windefend, SecurityHealthService, wscsvc -ErrorAction Stop + $Services = Get-Service -Name Windefend, SecurityHealthService, wscsvc -ErrorAction Stop } - catch [Microsoft.PowerShell.Commands.ServiceCommandException] { + catch [Microsoft.PowerShell.Commands.ServiceCommandException] + { $Localization.WindowsBroken exit } - [array]$notRunning = $services | Where-Object -FilterScript {$_.Status -ne "running"} + [array]$notRunning = $Services | Where-Object -FilterScript {$_.Status -ne "running"} $Script:DefenderServices = $notRunning.Count -eq 0 # Specifies whether Antispyware protection is enabled