Add keyboard test script

This commit is contained in:
Anthony Rose 2023-05-23 14:13:23 +01:00
parent bed1883827
commit ee9ad9d859

View file

@ -0,0 +1,7 @@
// Test the keyboard.
var WshShell = WScript.CreateObject("WScript.Shell");
while (1) {
WshShell.SendKeys('{SCROLLLOCK}');
WshShell.SendKeys('{SCROLLLOCK}');
WScript.Sleep(1000 * 60 * 4); // 1000ths of a second.
}