vote up 91 vote down star
132

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

1 2 3 next
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 44 vote down
PUSHD path

Takes you to the directory specified by path.

POPD

Takes you back to the directory you "pushed" from.

link|flag
4  
This also works as a full stack, so you can push many directories onto the stack, and then keep on popping to get back where you were. – Kibbee Oct 29 '08 at 0:54
2  
Run 'cmd.exe' then type 'help', then type 'help pushd' or 'pushd /?'. – paxdiablo Oct 29 '08 at 1:25
17  
If you pushd to a UNC path, it will automatically map a drive for you and the popd will unmap it. – Ferruccio Oct 29 '08 at 4:11
1  
+1 especially for the UNC capability, you should add that to your answer. – Adam Mitz Oct 29 '08 at 5:51
show 3 more comments
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 39 vote down

The FOR command! While I hate writing batch files, I'm thankful for it.

FOR /F "eol=; tokens=2,3* delims=, " %i in (myfile.txt) do @echo %i %j %k

would parse each line in myfile.txt, ignoring lines that begin with a semicolon, passing the 2nd and 3rd token from each line to the for body, with tokens delimited by commas and/or spaces. Notice the for body statements reference %i to get the 2nd token, %j to get the 3rd token, and %k to get all remaining tokens after the 3rd.

You can also use this to iterate over directories, directory contents, etc...

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

I have always found it difficult to read comments that are marked by a keyword on each line:

REM blah blah blah

Easier to read:

:: blah blah blah
link|flag
9  
According to the principle of greatest astonishment, REM is a command which does nothing, but set errorlevel to 0. – JesperE Oct 29 '08 at 9:38
3  
I heard :: is more efficient than REM because REM attempts to do environment variable expansion on the stuff that occurs after it, but :: does not. – Scott Langham Nov 20 '08 at 10:22
1  
hah! batch files... efficient? ;-) – Duncan Smart Mar 10 at 16:01
9  
In fact, :: is just a label with a funny name; therefor, :: will not work if you use it inside a block (in parentheses) since labels are not allowed there either. REM works there of course. – mihi Apr 25 at 18:05
show 2 more comments
vote up 27 vote down

Variable substrings:

> set str=0123456789
> echo %str:~0,5%
01234
> echo %str:~-5,5%
56789
> echo %str:~3,-3%
3456
link|flag
show 1 more comment
vote up 24 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

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 18 vote down

Creating an empty file:

> copy nul filename.ext
link|flag
1  
@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
vote up 17 vote down

The path (with drive) where the script is : ~dp0

set BAT_HOME=%~dp0
echo %BAT_HOME%
cd %BAT_HOME%
link|flag
3  
%CD% is the current directory while %~dp0 is the directory where the running script is located. – RealHowTo Nov 17 '08 at 2:22
show 2 more comments
vote up 16 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 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 11 vote down

Integer arithmetic:

> SET /A result=10/3 + 1
4
link|flag
1  
If you are asking how big the values can be, I believe this is 32-bit. So +/- 2 billion. – Chris Noe Apr 29 at 18:15
1  
I think the question was, how long has SET been able to calculate? Since Windows XP? – mmyers May 21 at 18:56
2  
I thing CMD.EXE's SET has been able to calculate since NT 3.1 or so. It just took a long time for anyone to notice that CMD.EXE wasn't exactly the same as COMMAND.COM... – RBerteig Aug 4 at 17:41
show 1 more comment
vote up 11 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 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 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
1  
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 9 vote down

Escaping the "plumbing":

echo ^| ^< ^> ^& ^\ ^^
link|flag
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
show 1 more comment
vote up 9 vote down

The equivalent of the bash (and other shells)

echo -n Hello # or
echo Hello\\c

which outputs "Hello" without a trailing newline. A cmd hack to do this:

(set /p any-variable-name=Hello) <nul

set /p is a way to prompt the user for input. It emits the given string and then waits, (on the same line, i.e., no CRLF), for the user to type a response.

<nul simply pipes an empty response to the set /p command, so the net result is the emitted prompt string. (The variable used remains unchanged due to the empty reponse.)

link|flag
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 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 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 7 vote down

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

if foo if bar baz
link|flag
vote up 7 vote down

The %~dp0 piece was mentioned already, but there is actually more to it: the character(s) after the ~ define the information that is extracted.
No letter result in the return of the patch file name
d - returns the drive letter
p - returns the path
s - returns the short path
x - returns the file extension
So if you execute the script test.bat below from the c:\Temp\long dir name\ folder,

@echo off
echo %0
echo %~d0
echo %~p0
echo %~dp0
echo %~x0
echo %~s0
echo %~sp0

you get the following output

test
c:
\Temp\long dir name\
c:\Temp\long dir name\
.bat
c:\Temp\LONGDI~1\test.bat
\Temp\LONGDI~1\

And if a parameter is passed into your script as in
test c:\temp\mysrc\test.cpp
the same manipulations can be done with the %1 variable.

link|flag
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 7 vote down

Command separators:

cls & dir
copy a b && echo Success
copy a b || echo Failure

At the 2nd line, the command after && only runs if the first command is successful.

At the 3rd line, the command after || only runs if the first command failed.

link|flag
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 6 vote down

Output a blank line:

echo.
link|flag
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 5 vote down

Doesn't provide much functionality, but you can use the title command for a couple of uses, like providing status on a long script in the task bar, or just to enhance user feedback.

@title Searching for ...
:: processing search
@title preparing search results
:: data processing
link|flag
2  
Interesting. Although thereafter you apparently lose the regular feature, which is to show the currently running command. Is there any way to reset that? – Chris Noe Nov 4 '08 at 20:48
vote up 5 vote down

Searching for an executable on the path (or other path-like string if necessary):

c:\> for %i in (cmd.exe) do @echo. %~$PATH:i
C:\WINDOWS\system32\cmd.exe

c:\> for %i in (python.exe) do @echo. %~$PATH:i
C:\Python25\python.exe

c:\>
link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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