(view source code of lockkitt.js as plain text)
var WshShell = WScript.CreateObject( "WScript.Shell" );
counter = 0;
do
{
WshShell.SendKeys( "{NUMLOCK}" );
WScript.Sleep( 200 );
WshShell.SendKeys( "{NUMLOCK}" );
WshShell.SendKeys( "{CAPSLOCK}" );
WScript.Sleep( 200 );
WshShell.SendKeys( "{CAPSLOCK}" );
WshShell.SendKeys( "{SCROLLLOCK}" );
WScript.Sleep( 200 );
WshShell.SendKeys( "{SCROLLLOCK}" );
WshShell.SendKeys( "{CAPSLOCK}" );
WScript.Sleep( 200 );
WshShell.SendKeys( "{CAPSLOCK}" );
counter = counter + 1;
}
while ( counter < 18 );
page last modified: 2024-04-16; loaded in 0.0091 seconds