Tagged Questions

The batch tag is predominantly used for Windows batch file questions. However, every now and then a question related to SQL and batch inserts crops up. 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.

learn more… | top users | synonyms

228
votes
90answers
52k views

Hidden features of Windows batch files

What are some of the lesser know, but important and useful features of Windows batch files? Guidelines: One feature per answer Give both a short description of the feature and an example, not just ...
110
votes
8answers
41k 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 ...
72
votes
14answers
136k 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 ...
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?
35
votes
14answers
72k 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 ...
29
votes
5answers
31k 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 ...
26
votes
11answers
63k 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)?
25
votes
10answers
88k 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.
23
votes
11answers
24k 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?
21
votes
7answers
20k 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 ...
19
votes
4answers
10k 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?
19
votes
6answers
23k 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 ...
17
votes
3answers
65k views

DOS 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?
16
votes
12answers
5k 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).
16
votes
5answers
22k 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 ...
15
votes
7answers
2k 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 ...
15
votes
8answers
62k views

How to wait in a batch script? [closed]

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 ...
14
votes
4answers
21k 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 ...
14
votes
2answers
9k views

How to capture stderr on Windows/DOS?

I want to capture the errors from a script into a file instead of to the screen. In *nix, this is done with stderr redirection, usually echo "Error" 2> errorfile.log How do I do it in CMD ...
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
4answers
11k 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 ...
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
9answers
14k views

How can I debug a .BAT script?

Is there a way to step through a .bat script ? The thing is , I have a build script , which calls a lot of other scripts , and I would like to see what is the order in which they are called , so that ...
12
votes
2answers
6k 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 ...
12
votes
2answers
10k 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!
12
votes
7answers
6k views

How do I concatenate JavaScript files into one file?

I want to create a compiled JavaScript file for my website. For development I would prefer to keep the JavaScript in separate files and just as part of my automated scripts concatenate the files ...
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
5answers
345 views

Python utilizing multiple processors

Lets say I have a big list of music of varying length that needs to be converted or images of varying sizes that need to be resized or something like that. The order doesn't matter so it is perfect ...
11
votes
7answers
9k views

How to say no to all “do you want to overwrite” prompts in a batch file copy?

By default, copying from the command prompt will prompt you to overwrite files that already exist in the target location. You can add "/Y" to say "Yes to all" replacements. But how can you say "No ...
10
votes
5answers
686 views

What's a good way to write batch scripts in C#?

I would like to write simple scripts in C#. Stuff I would normally use .bat or 4NT .btm files for. Copying files, parsing text, asking user input, and so on. Fairly simple but doing this stuff right ...
10
votes
11answers
8k views

How do I test if a file is a directory in a Batch script?

Is there any way to say if a file is a directory? I have the filename in a variable. In Perl I can do this: if(-d $var) { print "it's a directory\n" }
10
votes
6answers
9k views

Automated script to zip IIS logs?

I'd like to write a script/batch that will bunch up my daily IIS logs and zip them up by month. ex080801.log which is in the format of ex*yymmdd*.log ex080801.log - ex080831.log gets zipped up and ...
9
votes
3answers
407 views

How to send Shutdown command to process through CMD Prompt on Windows

I'm currently working as software developer and I'm using bunch of tools, so I need to close them all when finished with the work. So what I have done I have created batch file with the tskill command ...
9
votes
1answer
233 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
4answers
2k views

Batch script: how to check for admin rights

How do I check if the current batch script has admin rights? I know how to make it call itself with runas but not how to check for admin rights. The only solutions I've seen are crude hack jobs or ...
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

Batch file encoding

I would like to deal with filename containing strange characters, like french é. Everything is working fine in the shell : C:\somedir\>ren -hélice hélice Know if I put this line in a .bat file, ...
9
votes
2answers
4k views

Drag and drop batch file for multiple files?

I wrote a batch file to use PngCrush to optimize a .png image when I drag and drop it onto the batch file. In the what's next section, I wrote about what I thought would be a good upgrade to the ...
9
votes
3answers
75k views

write a 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 ...
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
2k views

Windows batch file starting directory when 'run as admin'

I have a batch file which is in a directory and must be run from there as well because it updates files within this directory. This works perfectly fine, except when the user runs the batch file as ...
9
votes
7answers
1k views

Detecting how a batch file was executed

Assuming Windows, is there a way I can detect from within a batch file if it was launched from an open command prompt or by double-clicking? I'd like to add a pause to the end of the batch process if ...
8
votes
7answers
1k views

Determine if tomcat is running in Windows using command prompt

Quite simply, how does one determine whether or not tomcat is running in windows, using the command prompt? I am writing a batch script that must do this. This is the bash version: RESULT=`netstat ...
8
votes
4answers
4k views

How to check if a file exists from inside a batch file

I need to run a utility only if a certain file exists. How do I do this in Windows batch?
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
3answers
302 views

Can Perl and Batch run in the same batch file?

I've got a batch script that does some processing and calls some perl scripts. My question is if there was a way to put the perl code directly into the batch script and have it run both types of ...
8
votes
5answers
1k views

Batch equivalent of Bash backticks

When working with Bash, I can put the output of one command into another command like so: my_command `echo Test` would be the same thing as my_command Test (Obviously, this is just a ...
8
votes
14answers
901 views

Better than MSDOS batch files?

Is there something better than using MSDOS in a bat file to run commmand line operations and copy files around. I am running into the old chestnut "gotchas" with long file names etc - and for some ...

1 2 3 4 5 55