batch file question.

I am not sure this is a place to post my question. but i don't know where to post it , so i decide to post here.

yeah, I have a question about is that possible to creat a batch file to open the command prompt? like create a batch file and when you double click on it. it open up command prompt?

if any one can supply me any website to learn the batch file. that would be really helpful. thank you so much

[428 byte] By [ritchie_lina] at [2007-11-27 11:18:42]
# 1

the command "start".

http://www.computerhope.com/starthlp.htm

TuringPesta at 2007-7-29 14:32:33 > top of Java-index,Java Essentials,New To Java...
# 2

@ECHO OFF

REM This is a batch file that opens up a command line window

cmd /K

As for the websites, here's one:

www.google.com

dwga at 2007-7-29 14:32:33 > top of Java-index,Java Essentials,New To Java...