Batch Files are create with simple XP DOS command services. How can i write Batch code? These question has very simple answer is Notepad. Start Menu > Run > notepad Hit ENTER or Start Menu > Accessories > notepad.

First Step to Learn Batch on XP, How to Start XP Batch file on Windows XP?
Most of People familiar with echo command. now i will explain echo is an command it execute the Information. It just shows after you type echo command.

On Batch file echo on/off is the first step of batch file writing. Note: default is echo on.
So if you don want to show the run commands on command windows just type as @echo off

example:
Copy below batch codes to notepad and save as test.bat

@echo off
explorer

0 comments