Hi Guys,
In office I have to make many automations with DOS commands. I wanted to use Batch files but I don't know their specific commands.
Can anyone suggest a good IDE & Books for learning how to create Batch Files.
Suggest a User Friendly IDE & Book for Batch File Programmin
Moderator: DosItHelp
Re: Suggest a User Friendly IDE & Book for Batch File Progra
There is the built-in help that is very useful.
In a cmd prompt you can type help to get a list of commands,
and a useful command to page through long text is more
so you can pipe the help text output through more like this:
Then each command you see listed has further help available by adding /? after the command name.
and remember that you can add the more filter again at the end like this to get a page at a time:
Ask specific questions here and someone may help you too.
In a cmd prompt you can type help to get a list of commands,
and a useful command to page through long text is more
so you can pipe the help text output through more like this:
Code: Select all
help|more
Then each command you see listed has further help available by adding /? after the command name.
Code: Select all
dir /?
xcopy /?
more /?
copy /?
and remember that you can add the more filter again at the end like this to get a page at a time:
Code: Select all
robocopy /?|more
xcopy /?|more
Ask specific questions here and someone may help you too.
-
- Expert
- Posts: 1167
- Joined: 06 Sep 2013 21:28
- Location: Virginia, United States
Re: Suggest a User Friendly IDE & Book for Batch File Progra
Whenever people ask me about batch commands, I usually direct them to http://ss64.com/nt/
To my knowledge, there's no IDE for batch beyond text editors with syntax highlighting.
To my knowledge, there's no IDE for batch beyond text editors with syntax highlighting.
-
- Posts: 12
- Joined: 30 Aug 2014 10:55
hello every one ! new bie here
Hi i m pretty new to write codes for batch files, can anyone guide me the sources to learn more coding for batch files.
any sites , links , videos and pdf material sharing is highly thankful
any sites , links , videos and pdf material sharing is highly thankful

Re: Suggest a User Friendly IDE & Book for Batch File Progra
I good way to get batch programming down is to first understand the syntax and operators. There's several good sources for this.
The next step (which never ends) is to see how these are used to make different things happen, like the functions found here on dostips. Study these and you'll learn different ways of putting the features and syntax of batch together to make different things happen.
The next step (which never ends) is to see how these are used to make different things happen, like the functions found here on dostips. Study these and you'll learn different ways of putting the features and syntax of batch together to make different things happen.

-
- Expert
- Posts: 1167
- Joined: 06 Sep 2013 21:28
- Location: Virginia, United States
Re: hello every one ! new bie here
sivasriram wrote:Hi i m pretty new to write codes for batch files, can anyone guide me the sources to learn more coding for batch files.
any sites , links , videos and pdf material sharing is highly thankful
I recommend looking at the three posts directly above yours.