Notepad Trick to Hit Enter Continuously
What if we wished to use the function of our enter button happen again and again, a better idea than to press it again and again would be ...
https://www.computersprofessor.com/2016/06/notepad-trick-to-hit-enter-continuously.html?m=0
What if we wished to use the function of our enter button happen again and again, a better idea than to press it again and again would be to use the code below
Open Notepad and paste the below code
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Save it as a Demo.vbs file and Open it to see its magic