This is going to make your Keyboard lights (Capslock,Scrollock,Numlock) flash.
It looks pretty bad ass.
Instructions :
1. Open notepad and paste this code into it :
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
2. Save it as anything.VBS
3. Run the file. Enjoy , Dont have a seizure!
To remove:
Open task manager and end the process. Its called something like WSCRIPT.
Enjoys.
Rambo
Plz Hide Your IP
Saturday, September 25, 2010
Restore CMD at School
I am not responsible for what you do with this, what you do are your actions, not mine!
So your school disabled command prompt?
Well read this short and sweet tut and find out how to get it back!
First open notepad and paste this in:
Code:
'Script by BYTE
Set WshShell = WScript.CreateObject("WScript.Shell")
With WScript.CreateObject("WScript.Shell")
On Error Resume Next
.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
.RegDelete "HKCU\Software\Policies\Microsoft\Windows\System\DisableCMD"
End With
Mybox = MsgBox(jobfunc & enab & vbCR & "Congrats, you have re-enabled your Command Prompt!", 4096, t)
And click save as,
Code:
cmdrestore.vbs
and click Save As: All Files, and just save it to the desktop or anywhere you want.
Then, go to where you save it and double click, if it says: "Congrats, you have re-enabled your Command Prompt" then it worked succesfully.
What it basically does is delete the DisableCMDPrompt registry, which then enables you to use command prompt...so enjoy!
Byte
So your school disabled command prompt?
Well read this short and sweet tut and find out how to get it back!
First open notepad and paste this in:
Code:
'Script by BYTE
Set WshShell = WScript.CreateObject("WScript.Shell")
With WScript.CreateObject("WScript.Shell")
On Error Resume Next
.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
.RegDelete "HKCU\Software\Policies\Microsoft\Windows\System\DisableCMD"
End With
Mybox = MsgBox(jobfunc & enab & vbCR & "Congrats, you have re-enabled your Command Prompt!", 4096, t)
And click save as,
Code:
cmdrestore.vbs
and click Save As: All Files, and just save it to the desktop or anywhere you want.
Then, go to where you save it and double click, if it says: "Congrats, you have re-enabled your Command Prompt" then it worked succesfully.
What it basically does is delete the DisableCMDPrompt registry, which then enables you to use command prompt...so enjoy!
Byte
Subscribe to:
Posts (Atom)