Skip to content

Instantly share code, notes, and snippets.

View sgeraldes's full-sized avatar

Sebastian Geraldes sgeraldes

  • Buenos Aires, Argentina
  • 07:15 (UTC -03:00)
View GitHub Profile
@sgeraldes
sgeraldes / Check-Nahimic.ps1
Last active June 13, 2025 12:39
Disable Nahinic Service
# 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