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

learn more… | top users | synonyms (8)

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 ...
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 ...
189
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 ...
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 ...
23
votes
7answers
66k views

How do I run a batch file from my Java Application?

In my Java application I want to run a batch file that calls "scons -Q implicit-deps-changed build\file_load_type export\file_load_type" It seems that I can't even get my batch file to execute. I'm ...
122
votes
17answers
76k views

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

Can this be done with standard means?
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 ...
9
votes
4answers
27k views

Executing Batch File in C#

I'm trying to execute a batch file in C# but i'm not getting any luck doing it. I've found multiple examples on the internet doing it but it is not working for me. public void ...
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 ...
10
votes
3answers
2k views

Why does delayed expansion fail when inside a piped block of code?

Here is a simple batch file that demonstrates how delayed expansion fails if it is within a block that is being piped. (The failure is toward the end of the script) Can anyone explain why this is? I ...
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?
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 ...
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 ...
16
votes
2answers
10k views

Windows Bat file optional argument parsing

I need my bat file to accept multiple optional named arguments. mycmd.bat man1 man2 -username alice -otheroption For example my command has 2 mandatory parameters, and two optional parameters ...
15
votes
8answers
23k views

how to have multiple colors in a batch file?

i was wondering if its possible to have different colored text on the same line in a batch file, for example if it says echo hi world i want "hi" to be one color, and "world" to be another color. ...
2
votes
1answer
3k views

Why doesn't this FINDSTR example with multiple literal search strings find a match?

The following FINDSTR example fails to find a match. echo ffffaaa|findstr /l "ffffaaa faffaffddd" Why?
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 ...
178
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 ...
18
votes
2answers
35k views

Setting a system environment variable from a Windows batch file?

Is it possible to set a environment variable at the system level from a command prompt in Windows 7 (or even XP for that matter). I am running from an elevated command prompt. set name=value seems to ...
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 ...
6
votes
4answers
10k views

Script to associate an extension to a program

My customer is replacing MS Office with OpenOffice in some workstations. My program export a file to Excel using the .xml extension (using open format) and opens it using the current associated ...
69
votes
6answers
48k 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 ...
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 ...
13
votes
5answers
17k views

Parallel execution of shell processes

Is there a tool available to execute several process in parallel in a Windows batch file? I have found some interesting tools for Linux (parallel and PPSS), however, I would need a tool for Windows ...
2
votes
2answers
3k views

'Pretty print' windows %PATH% variable - how to split on ';' in CMD shell

I want to run a simple one-liner in the Windows CMD prompt to print my %PATH% variable, one entry per line. I tried this: for /f "delims=;" %a in ("%path%") do echo %a but this only prints the first ...
1
vote
3answers
2k views

DIR output into BAT array?

Is there a way to read in the output of a 'dir' command into an array in a BAT file? Or would I need to output it to a file first, then read the file and delete the file after? The purpose is to get ...
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?
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 ...
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.
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.
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 ...
12
votes
2answers
9k 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
10answers
44k views

Windows batch file file download from a URL

I am trying to download a file from a website (ex. http://www.foo.com/package.zip) using a Windows batch file. I am getting an error code when I write the function below: xcopy /E /Y ...
4
votes
2answers
2k views

(Windows batch) Goto within if block behaves very strangely

If I take the following Windows batch code snippet and run it: echo foo if 1 == 1 ( echo bar goto asdf :asdf echo baz ) else ( echo quux ) The output I would expect is: foo bar ...
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 ...
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
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. ...
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 ...
61
votes
6answers
74k views

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

How would you implement logical operators in DOS Batch files?
25
votes
2answers
5k 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
1answer
968 views

File redirection in Windows and %errorlevel%

Lets say we want to create an empty file in windows with the following command: type nul > C:\does\not\exist\file.txt the directory does not exist, so we get the error: The system cannot find ...
2
votes
5answers
2k views

Make an environment variable survive ENDLOCAL

I have a batch file that computes a variable via a series of intermediate variables: @echo off setlocal set base=compute directory set pkg=compute sub-directory set scripts=%base%\%pkg%\Scripts ...
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 ...
19
votes
16answers
25k 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" }
22
votes
2answers
34k views

Batch file: Find if substring is in string (not in a file)

In a batch file, I have a string abcdefg. I want to check if bcd is in the string. Unfortunately it seems all of the solutions I'm finding search a file for a substring, not a string for a ...
16
votes
8answers
42k 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 ...
10
votes
6answers
48k views

Way to run Excel macros from command line or batch file?

I have an Excel VBA macro which I need to run when accessing the file from a batch file, but not every time I open it (hence not using the open file event). Is there a way to run the macro from the ...
17
votes
7answers
33k 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 ...
2
votes
2answers
2k views

How can I check the time stamp creation of a file in a Windows batch script?

I need help how do check files in particular folders with time stamp older than 2 days then will remove or delete or copy to other place?
2
votes
4answers
2k views

Is there a short cut for desktop folder in Windows batch?

C:\Documents and Settings\Administrator\Desktop I don't want to type the above each time to refer to a file on the desktop

1 2 3 4 5 22