@echo off echo Enabling RGB Light Pollution mode pause mode con: cols=120 lines=40 cls echo Set WshShell = CreateObject("WScript.Shell") > "%temp%\0xff23c4.vbs" echo WshShell.SendKeys "{F11}" >> "%temp%\0xff23c4.vbs" cscript "%temp%\0xff23c4.vbs" setlocal enabledelayedexpansion set "foreground=a b c d e f" set "background=0 1 2 3 4 5 6 7 8 9 A B C D E F" :loop for %%f in (%foreground%) do ( for %%b in (%background%) do ( color 0%%b%%f ) ) cls GOTO loop