Skip to content

Instantly share code, notes, and snippets.

@jakenuts
jakenuts / RemoveVolute.ps1
Created June 25, 2024 20:54
Removing NhNotifySys & Volute crapware
get-process *nahimic* | Stop-Process -Force
Start-Sleep -Milliseconds 750
Get-Service *nahimic* | Stop-Service -Force
Start-Sleep -Milliseconds 750
Get-Service *nahimic* | Set-Service -StartupType Disabled
get-process *A-Volute* | Stop-Process -Force
Start-Sleep -Milliseconds 750
Get-Service *A-Volute* | Stop-Service -Force
Start-Sleep -Milliseconds 750