The batch-file tag is (hopefully) solely used for Windows batch file questions. Batch files are scripts executed by the Windows command processor (cmd.exe) or, in older times, by the DOS shell (command.com). While many people mistakenly believe that everything that has light gray text on a black background is DOS, pretty much no batch question ever asked here was DOS-related.
110
votes
8answers
40k 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 ...
71
votes
7answers
132k 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 ...
65
votes
2answers
31k 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?
51
votes
9answers
87k 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
45
votes
18answers
99k 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 ...
40
votes
10answers
86k 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 ...
27
votes
50answers
3k views
Favourite command line trick [closed]
bash, bat, whatever...
What is your favourite command line hyperproductivity trick?
27
votes
2answers
21k 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 echo's the filename or file path.
26
votes
4answers
21k views
Logical operators (“and”, “or”) in DOS batch
How would you implement logical operators in DOS Batch files?
26
votes
6answers
47k 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?
26
votes
24answers
20k 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 ...
25
votes
4answers
18k 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 ...
19
votes
10answers
21k 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. ...
18
votes
5answers
16k 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 ...
17
votes
7answers
5k views
How can I suppress the “terminate batch job” in cmd.exe
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
...
17
votes
1answer
28k 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 ...
15
votes
4answers
12k 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?
...
14
votes
11answers
37k views
How can I open a message box in a Windows batch file?
I'm kind of going through DOS again and it's been ages, so I need a lot of help.
My question is; how can I make a batch file open a popup screen?
Like:
Sorry for the poor English, I'm Dutch/Italian ...
14
votes
15answers
17k views
How to check if directory exists in %PATH%?
How does one check if a directory is already present in the PATH environment variable? Here's a start. All I've managed to do with the code below, though, is echo the first directory in %PATH%. Since ...
14
votes
8answers
23k views
How do I write a Windows batch script to copy the newest file from a directory?
I need to copy the newest file in a directory to a new location. So far I've found resources on the forfiles command, a date-related question here, and another related question. I'm just having a bit ...
13
votes
5answers
9k views
How to get the exit status of a Java program in Windows batch file
Analogous to the $? in Linux, is there a way to get the exit status of a program in a Windows batch file (.bat)?
Say for example the program has a System.exit(0) upon successful execution, and a ...
13
votes
11answers
6k 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 ...
13
votes
5answers
28k 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.
...
12
votes
4answers
2k views
Visual Studio inserts invalid characters in batch files
I've got some batch files that I use to help automate the process of creating and reloading development databases. It makes sense to create and maintain these batch files in Visual Studio (i.e., in a ...
12
votes
8answers
26k views
BAT file to create Java CLASSPATH
I want to distribute a command-line application written in Java on Windows.
My application is distributed as a zip file, which has a lib directory entry which has the .jar files needed for invoking ...
12
votes
5answers
34k views
Run batch file as a Windows service
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 ...
11
votes
9answers
614 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. :(
11
votes
8answers
23k 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 ...
11
votes
3answers
5k views
Msys Git Merge Tool Command Options Issue
I'm using msys Git for source control on a Windows machine and I'm trying to figure out how to get my merge tool, WinMerge, to work with Git.
I've followed the instructions on this blog to the best ...
11
votes
11answers
2k views
How can I simulate a disk full error in a Windows environment?
I have to write a bat script for a test scenario where the software that we are testing fails to write to file due to a disk full error. The test script must be automated, so that we can run it on ...
11
votes
8answers
1k views
Is PowerShell a good upgrade for a batch file?
I package our server releases into zip files using a batch file (Windows), running the command-line version of WinZip. Previously we did this sort of thing "by hand" but I developed the process of ...
11
votes
3answers
6k views
Command line .cmd/.bat script, how to get directory of running script
How can you get the directory of the script that was run and use it within the .cmd file?
10
votes
5answers
5k views
How do you strip quotes out of an ECHO'ed string in a Windows batch file?
I have a Windows batch file I'm creating, but I have to ECHO a large complex string, so I'm having to put double quotes on either end. The problem is that the quotes are also being ECHOed to the file ...
10
votes
7answers
23k 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.
9
votes
1answer
230 views
Im running an application from a .bat file. How do i make the window scroll up and down?
My Java application runs from this .bat file
@ECHO OFF
mode con:cols=130 lines=60
CLS
java -cp lib\postgresql-9.0-801.jdbc4.jar;bin telecom.cli.Telecom
PAUSE
A Window opens, the app runs ...
9
votes
3answers
3k views
Windows batch file to delete .svn files and folders
in order to delete all ".svn" files/folders/subfolders in "myfolder" I use this simple line in a batch file:
FOR /R myfolder %%X IN (.svn) DO (RD /S /Q "%%X")
This works, but if there are no ".svn" ...
9
votes
1answer
6k views
How do I test the current drive letter in a batch file?
I'm trying to write a batch file that takes the drive letter the batch file is being run from, and uses it an an IF statement. If the letter is M: for example, it will jump to the label :mSection.
Is ...
9
votes
4answers
24k views
Can I mask an input text in a bat file
I am writing a batch file for execute some other programs. In this case I need to prompt for a password. Do I have any way to mask the input text. I don't need to print *** characters instead of input ...
9
votes
8answers
38k views
batch file to delete files older than a specified date
How do I create a batch file to delete files older than a specified date?
This does not seem to work;
:: --------DELOLD.BAT----------
@echo off
SET OLDERTHAN=%1
IF NOT DEFINED OLDERTHAN GOTO SYNTAX
...
9
votes
5answers
17k views
Running Batch File in background when windows boots up
How do I run a batch file each time windows boots up also I need to run it in the back ground(without that command window getting displayed)? I use Windows Xp.
My actuall requirement is I want to ...
9
votes
7answers
8k views
How can I make a batch file to act like a simple grep using Perl?
I already know the obvious answer to this question: "just download <insert favorite windows grep or grep-like tool here>". However, I work in an environment with strict controls by the local IT ...
8
votes
1answer
748 views
Explain how dos-batch newline variable hack works
Can someone please explain how this works?
@echo off
REM Creating a Newline variable (the two blank lines are required!)
set NLM=^
set NL=^^^%NLM%%NLM%^%NLM%%NLM%
REM Example Usage:
echo There ...
8
votes
3answers
593 views
How do I execute several git commands in a batch file without terminating after the first command?
I tried to put a series of GIT commands that I always use continuously togeter as batch files so that I don't repeat myself too much. For example, I have this batch file called update_repo_branch.bat ...
8
votes
4answers
9k views
How to check if a service is running via batch file and start it, if it is not running?
I want to write a batch file that performs the following operation:
Check if a Service is running
** If is it running, quit the batch
** If it is not running, start the service
The code ...
8
votes
12answers
963 views
Why Java programs use .bat file as program launcher?
I found that a lot of Java programs in Windows use .bat batch file as program launcher. It looks weird if compared with other programs which use .exe executable file.
Why can't those Java programs ...
8
votes
6answers
12k views
creating a shortcut for a exe from a batch file
how to create a shortcut for a exe from a batch file.
i tried
call link.bat "c:\program Files\App1\program1.exe" "C:\Documents and Settings\%USERNAME%\Desktop" "C:\Documents and ...
8
votes
3answers
2k views
Weird scope issue in .bat file
I'm writing a simple .bat file and I've run into some weird behavior. There are a couple places where I have to do a simple if/else, but the code inside the blocks don't seem to be working correctly.
...
8
votes
10answers
21k views
Windows batch - loop over folder string and parse out last folder name
I need to grab the folder name of a currently executing batch file. I have been trying to loop over the current directory using the following syntax (which is wrong at present):
set mydir = %~p0
for ...
8
votes
2answers
823 views
How do I implement quicksort using a batch file?
While normally it's good to always choose the right language for the job, it can sometimes be instructive to try and do something in a language which is wildly inappropriate.
It can help you ...
7
votes
2answers
201 views
Memory leak in batch for loop?
I am writing a batch script that goes through every file in a directory looking for code files and modifies them in some way. After I finished that task I tried to run it on a large directory with ...