This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check Nahimic service status | |
$nahimicService = Get-Service -Name "Nahimic service" -ErrorAction SilentlyContinue | |
if ($nahimicService) { | |
if ($nahimicService.Status -eq "Running") { | |
Write-Host "Nahimic service is currently running." -ForegroundColor Yellow | |
Write-Host "Advice: If you're experiencing issues related to Nahimic or high CPU/RAM usage, consider stopping and disabling the service." | |
} | |
else { | |
Write-Host "Nahimic service is present but currently not running." -ForegroundColor Green |