Flashing your keyboard lights !!!!

Third_Eye

Junior member
  • Apr 21, 2011
    166
    9
    18
    Hidden
    This will make your keyboard lights (if any) of Caps lock, Num lock & Scroll lock Flash.
    (1) Open notepad and Paste the following code in it -

    Set wshShell =wscript.CreateObject("WScript.Shell")
    do
    wscript.sleep 100
    wshshell.sendkeys "{CAPSLOCK}"
    wshshell.sendkeys "{NUMLOCK}"
    wshshell.sendkeys "{SCROLLLOCK}"
    loop

    (2) Save it with any name but the extension .VBS such as OUG.VBS

    (3) Run the file, and see your keyboard lights blinking, enjoy !

    (4) To stop it, open Task Manager > Goto Process > Find something like WS Script and select end process.