Page 1 of 1

Suggest a User Friendly IDE & Book for Batch File Programmin

Posted: 31 Aug 2014 03:48
by bsudhir6
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.

Re: Suggest a User Friendly IDE & Book for Batch File Progra

Posted: 31 Aug 2014 04:28
by foxidrive
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:

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.

Re: Suggest a User Friendly IDE & Book for Batch File Progra

Posted: 31 Aug 2014 04:55
by ShadowThief
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.

Re: Suggest a User Friendly IDE & Book for Batch File Progra

Posted: 31 Aug 2014 05:11
by penpen

hello every one ! new bie here

Posted: 31 Aug 2014 11:42
by sivasriram
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 :)

Re: Suggest a User Friendly IDE & Book for Batch File Progra

Posted: 01 Sep 2014 17:49
by Samir
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. 8)

Re: hello every one ! new bie here

Posted: 01 Sep 2014 21:52
by ShadowThief
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.