Skip to content

Instantly share code, notes, and snippets.

@xchwarze
Last active June 3, 2021 00:57
Show Gist options
  • Save xchwarze/aad5708120afdb29670ac6334935051a to your computer and use it in GitHub Desktop.
Save xchwarze/aad5708120afdb29670ac6334935051a to your computer and use it in GitHub Desktop.
iCUE clean script - eliminates all the extra services that consume cpu and memory
@echo off
:: https://www.reddit.com/r/Corsair/comments/g1ws05/icue_disabling_redundant_services/
title iCUE clean script
:: I understand that it is safe to stop these: "CorsairService" and "CorsairLLAService"
:: this is responsible for starting Corsair.Service.DisplayAdapter and Corsair.Service.CpuIdRemote
sc config "CorsairService" start= disabled
sc stop "CorsairService"
sc config "CorsairLLAService" start= disabled
sc stop "CorsairLLAService"
:: stopping this could ruin the audio if you use corsair products of this type
sc config "CorsairGamingAudioConfig" start= disabled
sc stop "CorsairGamingAudioConfig"
:: stopping this could have some problem if your mother is MSI
sc config "CorsairMsiPluginService" start= disabled
sc stop "CorsairMsiPluginService"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment