vote up 93 vote down star
133

I think everyone agrees that DOS batch scripting is lame. Nonetheless there are many situations where it is expedient, or you must maintain existing scripts.

Guidelines:

  • One feature per answer
  • Give both a short description of the feature and an example, not just a link to documentation
  • Limit answers to native funtionality, i.e., does not require additional software, like the Windows Resource Kit

Clarification: We refer here to scripts that are processed by cmd.exe, which is the default on WinNT variants.

(See also: Windows batch files: .bat vs .cmd?)

flag
3  
this is a really good question! A necessary evil almost. (At least until you finally go for your cygwin goodness!) (Won't even mention powershell) – Hugo Oct 29 '08 at 0:48
show 11 more comments

66 Answers

vote up 11 vote down

Rather than litter a script with REM or :: lines, I do the following at the top of each script:

@echo OFF
goto :START

Description of the script.

Usage:
   myscript -parm1|parm2 > result.txt

:START

Note how you can use the pipe and redirection characters without escaping them.

link|flag
show 3 more comments
vote up 0 vote down
HELP

When working with different OS version it's important to know what commands are available natively. Typing HELP at the command prompt shows what commands are available, with a brief description of what they do.

cmd.exe /?

This will list all the command line parameters for launching a command prompt as well as registry tweaks that change system wide behavior.

link|flag
vote up 3 vote down

the correct format for loops with numeric variables is

for /l %%i in (startNumber, counter, endNumber) do echo %%i

more details > http://www.ss64.com/nt/for.html

link|flag
vote up 11 vote down

Escaping the "plumbing":

echo ^| ^< ^> ^& ^\ ^^
link|flag
1  
I'll bet the DOS escape character is not well known. Good one. – Joshua May 24 at 18:07
2  
Ah, that'd explain why it's the line continuation operator as well -- it escapes the newline, just like \ in bash... – leander May 24 at 18:22
vote up 2 vote down

Quick edit mode in cmd.exe is my favorite. This is slightly off topic, but when interacting with the command shell it can be a lifesaver. No, I'm not being hyperbolic--you will only see caret-capitol-v a certain number of times before you die; the more you see, the faster you die.

  1. Open up regedit (caution, not my fault, blue screen, etc)
  2. Go to HKCU/Console
  3. Set QuickEdit to 1

(You can set this from the UI as well, which is probably the better way. See the comments for instructions. Also there's a nice one line script to do this as well.)

Now, to copy, just left-click and drag to select and right click to copy. To paste, just right click.

NO MORE ^V^V^V^V^V^V^V^V^V^V^V^V^V^V!!!

Crap, I think I just killed somebody. Sorry!

link|flag
3  
You can set this without editing the registry directly. Click on the command prompt icon in the upper-left corner of the window. Select Properties. On the Options tab check the QuickEdit Mode box. – aphoria Oct 31 '08 at 13:42
1  
Yep, the Properties setting is the humane way to go. @Will, suggest you edit to make that the primary advice... But the regedit approach is still useful for say scripting this. – Chris Noe Oct 31 '08 at 16:48
show 3 more comments
vote up 2 vote down

/c param for the cmd.exe itself, tells it to run and then do these commands.

I used to find myself frequently doing:

win+r, cmd RETURN, ping google.com RETURN

but now I just do:

win+r, cmd /c ping google.com RETURN

much faster. also helpful if you're using pstools and you want to use psexec to do some command line function on the remote machine.

EDIT: /k Works the same, but leaves the prompt open. This might come in handy more often.

link|flag
show 3 more comments
vote up 9 vote down

Search and replace when setting environment variables:

> @set fname=%date:/=%

...removes the "/" from a date for use in timestamped file names.

and substrings too...

> @set dayofweek=%fname:~0,3%
link|flag
vote up 5 vote down

example of string subtraction on date and time to get file named "YYYY-MM-DD HH:MM:SS.txt"

echo test > "%date:~0,4%-%date:~5,2%-%date:~8,2% %time:~0,2%_%time:~3,2%_%time:~6,2%.txt"

I use color to indicate if my script end up successfully, failed, or need some input by changing color of text and background. It really helps when you have some machine in reach of your view but quite far away

color XY

where X and Y is hex value from 0 to F, where X - background, Y - text, when X = Y color will not change.

color Z

changes text color to 'Z' and sets black background, 'color 0' won't work

for names of colors call

color ?

link|flag
show 4 more comments
vote up 8 vote down

You can chain if statements to get an effect like a short-circuiting boolean `and'.

if foo if bar baz
link|flag
show 1 more comment
vote up 1 vote down

Multiple commands in one line, useful in many situations:

& Used to combine two commands, executes command1 and then command2 && A conditional combination, executes command2 if command1 completes successfully ¦¦ Command2 executes only if command1 does not complete successfully.

Examples:

:: ** Edit the most recent .TXT file and exit, useful in a .CMD / .BAT **
FOR /F %%I IN ('DIR *.TXT /B /O:-N') DO NOTEPAD %%I & EXIT


:: ** If exist any .TXT file, display the list in NOTEPAD, if not it 
:: ** exits without any error (note the && and the 2> error redirection)
DIR *.TXT > TXT.LST 2> NUL && NOTEPAD TXT.LST
link|flag
1  
Look, easier to read with underused "::" comments B:-) – Chris Noe Oct 31 '08 at 13:11
1  
REM ftw!, death to :: :-P – Johannes Rössel May 29 at 23:56
show 1 more comment
vote up 1 vote down

Here how to build a CLASSPATH by scanning a given directory.

setlocal ENABLEDELAYEDEXPANSION
if defined CLASSPATH (set CLASSPATH=%CLASSPATH%;.) else (set CLASSPATH=.)
FOR /R .\lib %%G IN (*.jar) DO set CLASSPATH=!CLASSPATH!;%%G
Echo The Classpath definition is %CLASSPATH%

works in XP (or better). With W2K, you need to use a couple of BAT files to achieve the same result (see Include all jars in the classpath definition ).

It's not needed for 1.6 since you can specify a wildcard directly in CLASSPATH (ex. -cp ".\lib*").

link|flag
vote up 11 vote down

To hide all output from a command redirect to >nul 2>&1.

For example, the some command line programs display output even if you redirect to >nul. But, if you redirect the output like the line below, all the output will be suppressed.

PSKILL NOTEPAD >nul 2>&1

EDIT: See Ignoring the output of a command for an explanation of how this works.

link|flag
2  
The >nul redirects STDOUT to nul. The 2>&1 redirects STDERR to wherever STDOUT is pointing. – aphoria Dec 2 '08 at 18:30
show 3 more comments
vote up 7 vote down

TheSoftwareJedi already mentioned the for command, but I'm going to mention it again as it is very powerful.

The following outputs the current date in the format YYYYMMDD, I use this when generating directories for backups.

for /f "tokens=2-4 delims=/- " %a in ('DATE/T') do echo %c%b%a
link|flag
1  
Surely DATE /T returns 29/10/2008 in Europe and 10/29/2008 in the US... so some localisation may be required! ;-) – Eggs McLaren Oct 29 '08 at 15:23
2  
It's excessive use of FOR, imo. I think I would just use %DATE:~10,4%%DATE:~4,2%%DATE:~7,2% for that rather than run a date command then parse it through for. – Coding With Style Jul 6 at 17:52
show 1 more comment
vote up 1 vote down

here's one trick that I use to run My Nant Build script consecutively without having to click the batch file over and over again.

:CODELINE
NANT.EXE -buildfile:alltargets.build -l:build.log build.product
@pause
GOTO :CODELINE

What will happen is that after your solution finished building, it will be paused. And then if you press any key it will rerun the build script again. Very handy I must say.

link|flag
show 2 more comments
vote up 7 vote down

if block structure:

if "%VS90COMNTOOLS%"=="" (
  echo: Visual Studio 2008 is not installed
  exit /b
)
link|flag
1  
As long as you're aware that variables will be expanded all in one go (without delayed expansion) - i.e. you can't sensibly use %ERRORLEVEL% in there. – Duncan Smart Mar 10 at 16:08
show 1 more comment
vote up 41 vote down

Not sure how useful this would be in a batch file, but it's a very convenient command to use in the command prompt:

C:\some_directory> start .

This will open up Windows Explorer in the "some_directory" folder.

I have found this a great time-saver.

link|flag
show 9 more comments
vote up 12 vote down

To quickly convert an Unicode text file (16bit/char) to a ASCII DOS file (8bit/char).

C:\> type unicodeencoded.txt > dosencoded.txt

as a bonus, if possible, characters are correctly mapped.

link|flag
vote up 19 vote down

Being able to run commands and process the output (like backticks of '$()' in bash).

for /f %i in ('dir /on /b *.jpg') do echo --^> %i
link|flag
1  
Doesn't work with filenames which has spaces in their names... This works: for /f "tokens=*" %i in ('dir /on /b *.jpg') do echo --^> %i – doekman Dec 2 '08 at 10:31
show 1 more comment
vote up 0 vote down

For loops with numeric counters (outputs 1 through 10):

for /l %i in (1,1,10) do echo %i
link|flag
vote up 2 vote down

The subdirectory option on 'remove directory':

rd /s /q junk
link|flag
vote up 6 vote down

Output a blank line:

echo.
link|flag
vote up 17 vote down

Sneaky trick to wait N seconds (not part of cmd.exe but isn't extra software since it comes with Windows), see the ping line. You need N+1 pings since the first ping goes out without a delay.

    echo %time%
    call :waitfor 5
    echo %time%
    goto :eof
:waitfor
    setlocal
    set /a "t = %1 + 1"
    >nul ping 127.0.0.1 -n %t%
    endlocal
    goto :eof
link|flag
show 3 more comments
vote up 7 vote down

Delayed expansion of variables (with substrings thrown in for good measure):

    @echo off
    setlocal enableextensions enabledelayedexpansion
    set full=/u01/users/pax
:loop1
    if not "!full:~-1!" == "/" (
        set full2=!full:~-1!!full2!
        set full=!full:~,-1!
        goto :loop1
    )
    echo !full!
    endlocal
link|flag
vote up 2 vote down

I find the ease with which you can redirect the output of commands to files extremely useful:

DIR *.txt > tmp.txt
DIR *.exe >> tmp.txt

Single arrow creates, or overwrites the file, double arrow appends to it. Now I can open tmp.txt in my text editor and do all kinds of good stuff.

link|flag
show 1 more comment
vote up 5 vote down

Subroutines (outputs 42):

    @echo off
    call :answer 42
    goto :eof
:do_something
    echo %1
    goto :eof

and subroutines returning a value (outputs 0, 1, 2, and so on):

    @echo off
    setlocal enableextensions enabledelayedexpansion
    call :seq_init seq1
:loop1
    if not %seq1%== 10 (
        call :seq_next seq1
        echo !seq1!
        goto :loop1
    )
    endlocal
    goto :eof

:seq_init
    set /a "%1 = -1"
    goto :eof
:seq_next
    set /a "seq_next_tmp1 = %1"
    set /a "%1 = %seq_next_tmp1% + 1"
    set seq_next_tmp1=
    goto :eof
link|flag
vote up 48 vote down

Line continuation:

call C:\WINDOWS\system32\ntbackup.exe backup ^
    /V:yes /R:no /RS:no /HC:off /M normal /L:s ^
    @daily.bks ^
    /F daily.bkf
link|flag
4  
Thanks, I had no idea about this! – Eggs McLaren Oct 29 '08 at 15:18
show 3 more comments
vote up 6 vote down

Total control over output with spacing and excape characters.:

echo.    ^<resourceDir^>/%basedir%/resources^</resourceDir^>
link|flag
1  
"echo. x" will output "<space>x", "echo x" will only output "x". This allows leading spaces. In addition the "^" escape character will prevent cmd from thinking all those "<" and ">" characters are I/O redirection. – paxdiablo Oct 29 '08 at 0:57
show 1 more comment
vote up 12 vote down
PAUSE

Stops execution and displays the following prompt:

Press any key to continue . . .

Useful if you want to run a batch by double-clicking it in Windows Explorer and want to actually see the output rather than just a flash of the command window.

link|flag
3  
One neat feature of "pause" is that if there's no terminal around to receive an "any key" (e.g. if your batch file is run from a system service), it detects this and just keeps going... – leander May 24 at 17:57
2  
Not exactly hidden... – Charlie Somerville Jun 27 at 7:19
1  
+1 to Charlie Somerville, this is so known every game programmer's 'go.bat' used it back in the early 90s. – LiraNuna Sep 9 at 6:18
1  
Instead of polluting all of your batch files (and making them annoying to use for CLI geeks), you could use Start / Run / then type 'cmd /k ' and the batch file name. OR change HKCR\batfile\shell\open\command default string to 'cmd /k "%1" %*'. OR make another batchfile which just runs '@cmd /k $*', put it on the desktop and drop your other batch files on it. There are lots of alternatives to PAUSE. Please consider them. – system PAUSE Sep 15 at 20:00
show 2 more comments
vote up 23 vote down

By using CALL, EXIT /B, SETLOCAL & ENDLOCAL you can implement subroutines with local variables.

example:

@echo off

set x=xxxxx
call :sub 10
echo %x%
exit /b

:sub
setlocal
set /a x=%1 + 1
echo %x%
endlocal
exit /b

This will print

11
xxxxx

even though :sub modifies x.

link|flag
2  
You should rather use goto :eof instead of exit /b, does the same thing but is the more standard way to do it. – Philibert Perusse Nov 7 '08 at 1:27
1  
There's a standard for this? O_o – Paulius Maruška Dec 2 '08 at 18:40
1  
However, if you want a subroutine to set an errorlevel, you will need to use exit /b. For example: exit /b 3 – Chris Noe Jul 6 at 20:28
1  
I've found it best to use "exit /B" instead of "goto :eof" to return from a subroutine, "goto :eof" has the problem that you may return an error code when you want to swallow it. For example if you use "if exist someFile echo it's here", this will set the errorlevel if someFile doesn't exist, but that's not wrong, and isn't an error code that you'd want to return (which is what "goto :eof" would do). – Scott Langham Aug 4 at 12:29
show 2 more comments
vote up 19 vote down

Creating an empty file:

> copy nul filename.ext
link|flag
2  
@devio: echo. puts an empty line. so the file wouldn't be empty! – Paulius Maruška Dec 2 '08 at 18:40
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.