Tag: easy
Easy VBS virus
by Installer on Apr.03, 2010, under Vbscript
This is a funny virus, if you want to joke your friends or in your school…
Related posts
vbscript Lesson 2 : Inputbox
by Installer on Apr.02, 2010, under Vbscript
Just Follow the vid and you’ll be just fine
If not, just download my VBS Compiler
Related posts
vbscript tutorial – Spambot
by Installer on Apr.02, 2010, under Vbscript
READ MORE FOR SCRIPT! Here is the tutorial how to create a very advanced Spambot using vbscript. any questions? dont be shy and leave a comment, or send me a PM, SCRIPT: set shell = createobject (“wscript.shell”) strtext = inputbox (“Write down your message you like to spam”) strtimes = inputbox (“How many times do you like to spam?”) strspeed = inputbox (“How fast do you like to spam? (1000 = one per sec, 100 = 10 per sec etc)”) strtimeneed = inputbox (“How many SECONDS do you need to get to your victems input box?”) If not isnumeric (strtimes & strspeed & strtimeneed) then msgbox “You entered something else then a number on Times, Speed and/or Time need. shutting down” wscript.quit End If strtimeneed2 = strtimeneed * 1000 do msgbox “You have ” & strtimeneed & ” seconds to get to your input area where you are going to spam.” wscript.sleep strtimeneed2 shell.sendkeys (“Spambot activated” & “{enter}”) for i=0 to strtimes shell.sendkeys (strtext & “{enter}”) wscript.sleep strspeed Next shell.sendkeys (“Spambot deactivated” & “{enter}”) wscript.sleep strspeed * strtimes / 10 returnvalue=msgbox (“Want to spam again with the same info?”,36) If returnvalue=6 Then Msgbox “Ok Spambot will activate again” End If If returnvalue=7 Then msgbox “Shutting down” wscript.quit End IF loop
Related posts
How to Create and Delete a file using Vbscript – Miutbevids
by Installer on Apr.02, 2010, under Vbscript
Code for Create the file : Dim objfso Set objfso = createobject(“Scripting.filesystemobject”) Const Append = 8 Dim fdir fdir = (“C:\Program Files\fake virus\create and delete\”) Const fname_ext = “miutbevids.txt” Dim Final Final = fdir + fname_ext Dim objtxt set objtxt = objfso.createtextfile(Final, True) Set objtxt = Nothing Dim fwrite Set fwrite = objfso.opentextfile(Final, Append) fwrite.writeline(“hi from miutvebvids www.miutbevids.webs.com”) fwrite.Close() Set fwrite = Nothing Set objfso = Nothing Code For Delete: Set objfso = createobject(“Scripting.filesystemobject”) objfso.deletefile(“C:\Program Files\fake virus\create and delete\createdfile.txt”) ———————- Rate Comment Subscribe Request www.mutubevids.webs.com
Related posts
vbscript input box full tutorial! Have a conversation with it with code easy to learn and do
by Installer on Apr.02, 2010, under Vbscript
If you have any Q’s dont hesitate to ask me!’ Rate subscribe comment request Code——————————————————————– ‘Made by Miutubevids go to ‘au.youtube.com ‘for more name=inputbox(“Hi whats your name”) input=inputbox(“So whats the weather like” & name) msgbox(” Ok i hope you have fun on a day that is so” & input) ————————————————————-
Related posts
Part 3 of Vbscript Pop UP Message Box full tutorial with code Advanced use but easy to follow
by Installer on Apr.02, 2010, under Vbscript
Thanks to allenamin for the information regarding this video i thought id just make a video of it for you all to know thnkas for watching miutubevids
Related posts
Installing Exchange Server 2007 Part 1 of 1
by Installer on Apr.02, 2010, under Exchange 2007
Installing Exchange Server 2007 Fully Narrated by (MCT) Microsoft Certified Trainer: William Grismore. This video demonstrates how easy it is to install Exchange Server 2007 as long as you have completed all the proper Pre-Installation steps. Make sure you watch the Preparing for Installing Exchange Server 2007 (A 4 part youtube Series). This video demonstration installing Exchange Server 2007 on a Windows Server 2003 Server infrastructure.
Related posts
Vbscript message box part 2 ising buttons to do things advanced but easy to use
by Installer on Apr.02, 2010, under Vbscript
Part 2 by miutubevids for knowign what numbers to use with the buttons 1 = OK 2 = Cancel 3 = Abort 4 = Retry 5 = Ignore 6 = Yes 7 = No Code:—————————————————————- Dim box, yes, no box = msgbox(“press a button and i will tell you what it is”,4,”miutubevids”) If box =6 Then yes = msgbox(“you pressed yes because in the script it ses 6 and if you look in the description it ses 6 = yes”,48,”miutubevids”) End if If box =7 Then no = msgbox(“you pressed no because in the script it ses 7 and if you look in the description it ses 7 = no”,48,”miutubevids”) End If _______________________________________________________ number between the commas from last tutorial 0 ok button 1 ok and a cancel button 2 abort, retry, and ignore buttons 3 yes, no, and cancel buttons 4 yes and no buttons 5 retry and cancel buttons 6-15 ok button 16 an icon of a ERROR sign, a circle with a cross on it and a ok button 32 an icon of a QUESTION mark sign “?” with a ok button 48 an icon of a WARNING sign, a triangle with a “!” on it and a ok button 64 is a information sighn _________________________ By miutubevids
Related posts
Vbscript Pop UP Message Box full tutorial with code Advanced use but easy to follow part 1
by Installer on Apr.02, 2010, under Vbscript
In part 2 i will show you how to use the buttons seperatly msgbox(“simple msgbox”),0,(“Miutubevids”) save as vbs Messege icons and buttons code for number between the commas 0 ok button 1 ok and a cancel button 2 abort, retry, and ignore buttons 3 yes, no, and cancel buttons 4 yes and no buttons 5 retry and cancel buttons 6-15 ok button 16 an icon of a ERROR sign, a circle with a cross on it and a ok button 32 an icon of a QUESTION mark sign “?” with a ok button 48 an icon of a WARNING sign, a triangle with a “!” on it and a ok button 64 an blue information icon _________________________ By miutubevids Song: How Do We Know Artist: The Living End