Script files that are executed by the Windows command-line interpreter.

learn more… | top users | synonyms (8)

188
votes
15answers
298k views

Batch file to delete files older than N days

I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've searched around the web, and found some examples with hundreds of lines of code, and others that required ...
180
votes
8answers
305k views

How to Pass Command Line Parameters in Batch File

I needed to pass id and password to a cmd (or bat) file at the time of running rather than hardcoding them into the file. Here's how I do it. @echo off fake-command /u %1 /p %2 Here's what the ...
177
votes
11answers
94k views

Windows batch files: .bat vs .cmd?

As I understand it, .bat is the old 16-bit naming convention, and .cmd is for 32-bit Windows, i.e., starting with NT. But I continue to see .bat files everywhere, and they seem to work exactly the ...
150
votes
2answers
65k views

Long commands split over multiple lines in Vista/DOS batch (.bat) file

How do I make long commands go over multiple lines in a Vista/DOS batch file?
147
votes
10answers
196k views

How can you echo a newline in batch files?

How can you you insert a newline from your batch file output. I want to do something like: > echo hello\nworld Which would output: hello world
130
votes
6answers
70k views

What does %~dp0 mean, and how does it work?

I find %~dp0 very useful, and I use it a lot to make my batch files more portable. But the label itself seems very cryptic to me... what is the ~ doing? does dp mean drive and path? does the 0 refer ...
126
votes
18answers
247k views

How to get current datetime on Windows command line, in a suitable format for using in a filename?

What's a Windows command line statement(s) I can use to get the current datetime in a format that I can put into a filename? I want to have a .bat file that zips up a directory into an archive with ...
122
votes
17answers
76k views

How to measure execution time of command in windows command line?

Can this be done with standard means?
103
votes
17answers
177k views

How can you find and replace text in a file using the Windows command-line environment?

I am writing a batch file script using Windows command-line environment and want to change each occurrence of some text in a file (ex. "FOO") with another (ex. "BAR"). What is the simplest way to do ...
97
votes
10answers
90k views

How to run multiple bat files within a bat file

Im trying to get my commit-build.bat to exceute other bat files as part of our build process. content of commit-build.bat: "msbuild.bat" "unit-tests.bat" "deploy.bat" Seems simple enough? But the ...
77
votes
10answers
158k views

How to check if a process is running via a batch script

How can I check if an application is running from a batch (well cmd) file? I need to not launch another instance if a program is already running. (I can't change the app to make it single instance ...
72
votes
10answers
162k views

Stop and Start a service via batch or cmd file?

How can I script a bat or cmd to stop and start a service reliably with error checking (or let me know that it wasn't successful for whatever reason)?
69
votes
6answers
47k views

What does %~d0 mean in a Windows batch file?

I'm looking at a batch file which defines the following variables: set _SCRIPT_DRIVE=%~d0 set set _SCRIPT_PATH=%~p0 What do %~d0 or %~p0 actually mean? Is there a set of well-known values for ...
69
votes
4answers
59k views

How to do something to each file in a directory with a batch script

How do you iterate over each file in a directory with a .bat or .cmd file? For simplicity please provide an answer that just echoes the filename or file path.
68
votes
20answers
59k views

Sleeping in a batch file

When writing a batch file to automate something on a Windows box, I've needed to pause its execution for several seconds (usually in a test/wait loop, waiting for a process to start). At the time, the ...
67
votes
13answers
52k views

Quickly create large file on a windows system?

In the same vein as http://stackoverflow.com/questions/257844/quickly-create-a-large-file-on-a-linux-system I'd like to quickly create a large file on a windows system. By large I'm thinking 5GB. ...
65
votes
21answers
185k views

How to sleep for 5 seconds in Windows's Command Prompt? (or DOS)

Windows's Snipping tool can capture the screen, but sometimes I want to capture the screen after 5 seconds, such as taking an image being displayed by the webcam. (run the script and smile at the ...
65
votes
18answers
75k views

Displaying Windows command prompt output and redirecting it to a file

How can I run a command-line application in the Windows command prompt and have the output both displayed and redirected to a file at the same time? If, for example, I were to run the command dir ...
64
votes
7answers
129k views

How to create empty text file from a batch file?

Can somebody remember what was the command to create an empty file in MSDOS using BAT file?
63
votes
11answers
77k views

batch scripting iterating over files in a directory

How could I iterate over each file in a directory using for? And how could I tell if a certain entry is a directory or if it's just a file?
63
votes
4answers
93k views

How to check if a file exists from inside a batch file [duplicate]

I need to run a utility only if a certain file exists. How do I do this in Windows batch?
61
votes
6answers
74k views

Logical operators (“and”, “or”) in DOS batch

How would you implement logical operators in DOS Batch files?
59
votes
3answers
63k views

What is the best way to do a substring in a batch file?

I want to get the name of the currently running batch file without the file extension. Thanks to this link, I have the file name with the extension... but what is the best way to do a substring in ...
57
votes
4answers
41k views

How do I make a batch file terminate upon encountering an error?

I have a batch file that's calling the same executable over and over with different parameters. How do I make it terminate immediately if one of the calls returns an error code of any level? ...
52
votes
7answers
218k views

How to wait in a batch script? [duplicate]

Possible Duplicate: Sleeping in a DOS batch file I am trying to write a batch script and trying to wait 10 seconds between 2 function calls. sleep 10 does not wait for 10 seconds. I am ...
52
votes
6answers
74k views

Executing multiple commands from a Windows cmd script

I'm trying to write a Windows cmd script to perform several tasks in series. However, it always stops after the first command in the script. The command it stops after is a maven build (not sure if ...
51
votes
6answers
33k views

Get list of passed arguments in Windows batch script (.bat)

I'd like to find a Windows batch counterpart to Bash's $@ that holds a list of all arguments passed into a script. Or I have to bother with shift?
50
votes
5answers
53k views

Windows XP or Vista: How can I run a batch file in the background (no windows displayed)?

I know I have already answered a similar question (Running Batch File in background when windows boots up), but this time I need to launch a batch: From another batch Without any DOS windows ...
46
votes
8answers
45k views

Batch File: Resolve Absolute Path from Relative Path and/or File Name

In a Windows Batch script is there any way to return an absolute path from a value containing a filename and/or relative path? Given: "..\" "..\somefile.txt" I need the absolute path relative to ...
43
votes
9answers
65k views

How do you loop through each line in a text file using a windows batch file?

I would like to know how to loop through each line in a text file using a Windows batch file and process each line of text in succession.
40
votes
13answers
34k views

windows batch: sleep

How do I get a windows batch script to wait a few seconds? sleep and wait don't seem to work (unrecognized command).
40
votes
4answers
214k views

Batch file to copy files from one folder to another folder

I am having a storage folder on network in which all users will store their active data on a server now that server is going to be replaced by new one due to place problem so I need to copy sub ...
40
votes
2answers
41k views

Stop a batch file from autoclosing

Can someone tell me what cmd to put at the end of a batch file to stop it from auto closing? Thanks!
36
votes
6answers
68k views

How do I run a bat file in the background from another bat file?

I have a "setup" script which I run in the morning which starts all the programs that I need. Now some of those need additional setup of the environment, so I need to wrap them in small BAT scripts. ...
35
votes
9answers
134k views

Windows batch command(s) to read first line from text file

How can I read the first line from a text file using a Windows batch file? Since the file is large I only want to deal with the first line.
34
votes
1answer
11k views

What are the undocumented features and limitations of the Windows FINDSTR command?

The Windows FINDSTR command is horribly documented. There is very basic command line help available through FINDSTR /?, or HELP FINDSTR, but it is woefully inadequate. There is a wee bit more ...
34
votes
5answers
59k views

How to loop through files matching wildcard in batch file

I have a set of base filenames, for each name 'f' there are exactly two files, 'f.in' and 'f.out'. I want to write a batch file (in Windows XP) which goes through all the filenames, for each one it ...
34
votes
7answers
9k views

How does the Windows Command Interpreter (CMD.EXE) parse scripts?

I ran into ss64.com which provides good help regarding how to write batch scripts that the Windows Command Interpreter will run. However, I have been unable to find a good explanation of the grammar ...
33
votes
3answers
127k views

Batch files: How to read a file?

How you can read a file (text or binary) from a batch file? There is a way to read it in a binary mode or text mode?
31
votes
4answers
55k views

Check for null variable in Windows batch

I'm working on a Windows batch file that will bcp three text files into SQL Server. If something goes wrong in production, I want to be able to override the file names. So I'm thinking of doing ...
31
votes
14answers
13k views

I want to delete all bin and obj folders to force all projects to rebuild everything

I work with multiple projects and I want to recursively delete all folders with the name 'bin' or 'obj'. That way, I am sure that all projects will rebuild everyhing (sometimes it's the only way to ...
30
votes
2answers
40k views

How to concatenate strings in a Windows batch file?

I have a directory for which I want to list all the .doc files with a ;. I know the following batch command echos all the files: for /r %%i In (*.doc) DO echo %%i But now I want to put them all in ...
30
votes
7answers
38k views

Can Windows' built-in ZIP compression be scripted?

Is the ZIP compression that is built into Windows XP/Vista/2003/2008 able to be scripted at all? What executable would I have to call from a BAT/CMD file? or is it possible to do it with VBScript? I ...
29
votes
11answers
88k views

windows batch script format date and time

In a windows (XP) batch script I need to format the current date and time for later use in files names etc., Similar to How to append a date in batch files but with time in as well I have this so ...
29
votes
4answers
32k views

Batch files - number of command line arguments

Just converting some shell scripts into batch files and there is one thing I can't seem to find...and that is a simple count of the number of command line arguments. eg. if you have: myapp foo bar ...
28
votes
9answers
4k views

How to echo “2” (no quotes) to a file, from a batch script?

How do I echo the number 2 into a file, from a batch script? This doesn't work: Echo 2>> file.txt because 2>> is a special command. :(
28
votes
6answers
69k views

Run batch file as a Windows service [closed]

In order to run one application, a batch file has to be kicked off (which does things like start Jetty, display live logs, etc). The application will work only if this batch file is running. I am ...
27
votes
4answers
42k views

Batch not-equal operator

According to this, !==! is the not-equal string operator. Trying it, I get: C:\> if "asdf" !==! "fdas" echo asdf !==! was unexpected at this time. What am I doing wrong?
27
votes
8answers
9k views

How can I suppress the “terminate batch job” in cmd.exe [closed]

I'm looking for a mechanism for suppressing the "Terminate batch job? (Y/N)" invitation that I get whenever I press CTRL-C in a program started from a batch file: batch file: jsshell.bat: @echo off ...
26
votes
5answers
35k views

Running windows batch file commands asynchronously

Say, if I have foo.exe bar.exe baz.exe How do I run all of them from a batch file asynchronously, i.e. without waiting for the previous program to stop?

1 2 3 4 5 208