Friday, November 1
Shadow

Freak out your friends with some cool VBscripts

https://www.electronicgurudev.in/technology/freak-out-your-friends-with-some-coo/

Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Save it as “Anything.VBS” and send it.

Toggle your friend’s Caps Lock button simultaneously:
Type :

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

Save it as “Anything.VBS” and send it.

Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Save it as “Anything.VBS” and send it.

Sharing is caring!

READ :  [Full Review] HP Pavilion G6 2005ax – My New Laptop
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x