Skip to content

Instantly share code, notes, and snippets.

@darkdex52
darkdex52 / RebootRGB.bat
Created March 11, 2024 10:19
Artemis/OpenRGB reboot batch script
@echo off
REM Define process names
set "OPENRGB_PROCESS=OpenRGB.exe"
set "ARTEMIS_PROCESS=Artemis.UI.Windows.exe"
REM Terminate OpenRGB and Artemis processes
echo Terminating OpenRGB and Artemis processes...
taskkill /f /im "%OPENRGB_PROCESS%" >nul 2>&1
taskkill /f /im "%ARTEMIS_PROCESS%" >nul 2>&1