The abbreviation " VPN " has slowly become established among average Internet users, which is certainly good, but the problem is that people have started to see VPN as the ultimate solution to all problems.
Here's an old interesting trick for Windows operating systems - A light show of lights.
With the help of a small ordinary script, you can "make" the lights (Num, Caps, Scroll) on the Keyboard light up, ie. tremble.
This "trick" will work on all keyboards!
So what do you need:
- Notepad++ (or regular Notepad)
- Keyboard ;)
Let's start:
-
Open Notepad and copy the code below:
Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{CAPSLOCK}" wshshell.sendkeys "{NUMLOCK}" wshshell.sendkeys "{SCROLLLOCK}" loop
-
Save file (Ctrl + S) as
filename.vbs
Note that it says .vbs at the end - A new file will appear, click 2x on it to run it and that's it, the lights are flashing.
To stop the script:
Open the Task Manager (Ctrl + Alt + Del), go to the "processes" tab, and at the end of the list find the process wscript.exe, click on End Process and the script will shut down.
Note: The lights may not turn off either, but if they remain on, simply turn them off with the appropriate key on the keyboard.
Comments
Post a Comment