Skip to content

Instantly share code, notes, and snippets.

@jakenuts
Created June 25, 2024 20:54
Show Gist options
  • Save jakenuts/bf729c09c880083bc6dc6168a8ba9147 to your computer and use it in GitHub Desktop.
Save jakenuts/bf729c09c880083bc6dc6168a8ba9147 to your computer and use it in GitHub Desktop.
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
Get-Service *A-Volute* | Set-Service -StartupType Disabled
get-windowsdriver -online | Where-Object {$_.ProviderName -like '*nahimic*' -or $_.ProviderName -like '*A-Volute*'} | ForEach-Object Remove-WindowsDriver
remove-item -path 'HKLM:\SYSTEM\CurrentControlSet\Services\NahimicService' -Recurse
remove-item -path 'HKLM:\SYSTEM\CurrentControlSet\Services\Nahimic_Mirroring' -Recurse
remove-item -path 'HKLM:\DRIVERS\DriverDatabase\DriverPackages\a-volutenh3aposwc.inf_amd64_90805808bbd8bc14' -Recurse
remove-item -path 'HKLM:\SYSTEM\CurrentControlSet\Enum\HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_1462CB86&REV_1003\5&2ab4279f&0&0001\Devices\{ce86418f-53d0-b4e5-36b3-3d0907cfa3b4}#AVOLUTE_NH3APO' -Recurse
remove-item -path 'HKLM:\SYSTEM\CurrentControlSet\Enum\HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_1462CB86&REV_1003\5&2ab4279f&0&0001\Devices\{ce86418f-53d0-b4e5-36b3-3d0907cfa3b4}#Nahimic_Mirroring' -Recurse
remove-item -path 'HKLM:\SYSTEM\CurrentControlSet\Enum\SWD\DRIVERENUM\{ce86418f-53d0-b4e5-36b3-3d0907cfa3b4}#AVoluteMirroringVad&6&34c08f0&0' -Recurse
remove-item -path 'HKLM:\SYSTEM\CurrentControlSet\Enum\SWD\DRIVERENUM\{ce86418f-53d0-b4e5-36b3-3d0907cfa3b4}#AVOLUTE_NH3APO&6&34c08f0&0' -Recurse
remove-item -path 'HKCU:\SOFTWARE\A-Volute' -Recurse
remove-item -path 'C:\Windows\System32\A-Volute' -Recurse
remove-item -path 'C:\Program Files (x86)\MSI\One Dragon Center\Nahimic' -Recurse
remove-item -path 'C:\Windows\System32\NahimicService.exe'
remove-item -path '%localappdata%\NhNotifSys' -recurse
@throw541
Copy link

throw541 commented Feb 1, 2025

thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment