Last active
June 3, 2021 00:57
-
-
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
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
@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