Hello buddies,Today I am going to post one cool trick. In this trick I'll show you how to make notepad or cmd to type automatically whatever you want to show on screen.Difficulty level is easy. You have to just follow my post and replace the text with yours which will show your own text rather than demo text!
Ghost typing on notepad or CMD using VBS script
Steps you have to follow
1. Open Notepad from start menu, Paste below code into it!Set wshshell = wscript.CreateObject("WScript.Shell")
Wshshell.run "Notepad"
wscript.sleep 400
wshshell.sendkeys "F"
wscript.sleep 100
wshshell.sendkeys "o"
wscript.sleep 120
wshshell.sendkeys "r"
wscript.sleep 200
wshshell.sendkeys " "
wscript.sleep 100
wshshell.sendkeys "M"
wscript.sleep 140
wshshell.sendkeys "o"
wscript.sleep 100
wshshell.sendkeys "r"
wscript.sleep 50
wshshell.sendkeys "e"
wscript.sleep 120
wshshell.sendkeys " "
wscript.sleep 170
wshshell.sendkeys "C"
wscript.sleep 200
wshshell.sendkeys "o"
wscript.sleep 100
wshshell.sendkeys "o"
wscript.sleep 50
wshshell.sendkeys "l"
wscript.sleep 120
wshshell.sendkeys " "
wscript.sleep 160
wshshell.sendkeys "T"
wscript.sleep 200
wshshell.sendkeys "r"
wscript.sleep 100
wshshell.sendkeys "i"
wscript.sleep 140
wshshell.sendkeys "c"
wscript.sleep 110
wshshell.sendkeys "k"
wscript.sleep 160
wshshell.sendkeys "s"
wscript.sleep 140
wshshell.sendkeys " "
wscript.sleep 120
wshshell.sendkeys "V"
wscript.sleep 190
wshshell.sendkeys "i"
wscript.sleep 110
wshshell.sendkeys "s"
wscript.sleep 100
wshshell.sendkeys "i"
wscript.sleep 140
wshshell.sendkeys "t"
wscript.sleep 150
wshshell.sendkeys " "
wscript.sleep 160
wshshell.sendkeys "W"
wscript.sleep 170
wshshell.sendkeys "w"
wscript.sleep 100
wshshell.sendkeys "W"
wscript.sleep 120
wshshell.sendkeys "."
wscript.sleep 130
wshshell.sendkeys "F"
wscript.sleep 140
wshshell.sendkeys "u"
wscript.sleep 170
wshshell.sendkeys "n"
wscript.sleep 110
wshshell.sendkeys "W"
wscript.sleep 100
wshshell.sendkeys "i"
wscript.sleep 140
wshshell.sendkeys "d"
wscript.sleep 160
wshshell.sendkeys "T"
wscript.sleep 160
wshshell.sendkeys "r"
wscript.sleep 100
wshshell.sendkeys "i"
wscript.sleep 140
wshshell.sendkeys "c"
wscript.sleep 110
wshshell.sendkeys "k"
wscript.sleep 120
wshshell.sendkeys "s"
wscript.sleep 110
wshshell.sendkeys "."
wscript.sleep 140
wshshell.sendkeys "C"
wscript.sleep 100
wshshell.sendkeys "o"
wscript.sleep 130
wshshell.sendkeys "m"
wscript.sleep 140
2. Save text file as AnyName.vbs . You can replace AnyName with your choice but remember to add .vbs as extension and select All Files from drop down list. Click on Ok.
3. You will get script like icon. Double click over it to open.
4. Now just wait and watch. Your custom text automatically written on notepad!
5. You can also create this effect on Command Prompt (CMD). Just replace "Notepad" with "cmd" as shown below.
After executing above code,You will get text as "For More Cool Tricks Visit WwW.FunWidTricks.Com". You can modify this text with your own by replacing each character present into above script onto other character present into your own sentense!
Also you can modify delay between two characters by modifying value present into command wscript.sleep XX. Here XX is delay in microseconds. You can modify with other value!
Also you can modify delay between two characters by modifying value present into command wscript.sleep XX. Here XX is delay in microseconds. You can modify with other value!