workstation/roles/home-gui/files/test.js

8 lines
227 B
JavaScript
Raw Normal View History

2023-05-23 13:13:23 +00:00
// 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.
}