Batch Files - the art of creating viruses
I could just you give the codes to paste in notepad and ask you to save files with extension .bat and your deadly batch viruses would be ready. But instead of that, I have focussed on making the basics of batch files clear and developing the approach to code your own viruses. What are Batch Files ? Lets begin with a simple example , Open your command prompt and change your current directory to 'desktop' by typing 'cd desktop' without quotes. Now type these commands one by one 1. md x //makes directory 'x' on desktop 2. cd x // changes current directory to 'x' 3. md y // makes a directory 'y' in directory 'x' We first make a folder/directory 'x', then enter in folder 'x',then make a folder 'y' in folder 'x' . Now delete the folder 'x'. Lets do the same thing in an other way. Copy these three commands in notepad and save file as anything.bat Now just double...