Tag: scripting
Zelftypende tekst in vbs (Notepad)
by Installer on Apr.03, 2010, under Vbscript
Je pc typt automatisch een tekst in notepad (kladblok). Kopieer het volgende in notepad en sla het op als iets.vbs: Denk aan de extensie “.vbs”, de naam mag je zelf weten. ——————————————————————– Set wshshell = wscript.createobject (“wscript.Shell”) wshshell.Run (“notepad.exe”) wscript.Sleep 600 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “H” wscript.Sleep 70 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “O” wscript.Sleep 70 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “I” wscript.Sleep 70 ——————————————————————– Zet steeds dit stukje onderaan het script: set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “a” wscript.Sleep 70 En verander de letter tussen de aanhalingstekens. In dit geval dus de ‘a’ die je moet veranderen. Het getal 70 wat er steeds staat kun je ook veranderen, want dit staat voor de snelheid tussen elk teken. 1000 is 1 seconde. In dit filmpje typt de tekst ook automatisch zoals je ziet.
Related posts
How to write vbscript Viruses / Trojan Horses
by Installer on Apr.03, 2010, under Vbscript
This video will discuss the principal of “Script Wrapping” using the example of a simple vbscript / WMI based Trojan Horse Virus. This is presented for educational purposes ONLY and should not be used in malicious fashion. The vbscript code used in this lesson can be found over here: jaysn.blogspot.com
Related posts
vbscript – Drive List
by Installer on Apr.02, 2010, under Vbscript
This tutorial will allow you to list the drive letters in your computer using message boxes and command prompt
Related posts
vbscript – View Network Data using wscript.Network
by Installer on Apr.02, 2010, under Vbscript
In this tutorial, I will be showing you how to create a network class and use it to echo out some network data
Related posts
Scripting in vbscript – How to get started
by Installer on Apr.02, 2010, under Vbscript
This is me creating a very cheap and simple program that shows how to use the basics of vbscripting. It shows how to use buttons. It shows how to use the IF/Else/End if statements to make a simple login screen It shows how to use the web browser tool to allow users to check their myspace. This video is made for people that don’t even know how to make .bat files and want to see how to start vbscripting. I’m not specificly telling people what all this does, as there are tons of tutorials on youtube telling what to do. This one just shows what you do to START. I plan on making other videos to show things that many people would find usefull such as creating a smooth health bar for a video game that works correctly. Just some things some people may not know, but want to find out. www.devguru.com This is where I learned how to vbscript. To learn what the If/Else/End If statements or other statements do, read here or check out other youtube videos.
Related posts
Export PST from Microsoft Outlook 2003/2007
by Installer on Jan.22, 2010, under Microsoft Outlook
Notes:Export Folder: “c:\Outlook”Outlook 2007: Test Completed Success
Outlook 2003: Not Tested yet