keyboard_press.bat 278 B

123456789
  1. @echo off
  2. :: Press CAPS LOCK twice with a delay of 3 seconds between each press
  3. echo "Pressing CAPS LOCK"
  4. send.exe COM4 115200 0x01 0x07 0xC1 0x01 0x08 0xC1
  5. timeout /t 3 /nobreak >nul
  6. echo "Pressing CAPS LOCK again"
  7. send.exe COM4 115200 0x01 0x07 0xC1 0x01 0x08 0xC1