Tagged Questions
Command Prompt (executable name cmd.exe) is the Microsoft-supplied command-line interpreter on OS/2, Windows CE and on Windows NT-based operating systems (including Windows 2000, XP, Vista, 7, Server 2003 and Server 2008). It is the analog of COMMAND.COM in MS-DOS and Windows 9x (where it is called MS-DOS Prompt) systems, or of the Unix shells used on Unix-like systems.
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 ...
60
votes
13answers
33k views
How to measure execution time of command in windows command line?
Can this be done with standard means?
37
votes
7answers
34k views
Is there a command to refresh environment variables from the command prompt in Windows?
If I modify or add an environment variable I have to restart the command prompt (minor inconvenience). Is there a command I could execute that would do this without restarting CMD?
28
votes
3answers
30k views
How to get folder path from file path with CMD
I need path to the folder that contains cmd file.
With %0 I can get file name. But how to get folder name?
c:\temp\test.cmd >> test.cmd
P.S. My current directory != folder of the script.
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)?
22
votes
7answers
8k views
Why git can't remember my passphrase under Windows
I have just start using git and i can't get it to remember my passphrase I'm using cmd.exe elevated and my git host is github and i have create a ssh key like that guide on github
but i still get
...
20
votes
11answers
10k views
Why is the Windows cmd.exe limited to 80 characters wide?
I love stretching my terminal on unix. What is the history or reason behind windows lame command line?
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
7answers
1k views
Are there any better command prompts for Windows?
For some reason the Windows command prompt is "special" in that you have to go to a properties dialog to resize it horizontally rather than just dragging the corner of the window like every other app. ...
16
votes
6answers
16k views
16
votes
10answers
8k views
Help me make my windows cmd.exe console work more like a Linux terminal
The windows terminal (the user-interface around text-applications like cmd.exe) really sucks.
There is so much that the Unix-style terminals do that the windows terminal apparently cannot do, for ...
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 ...
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
6answers
20k views
Get the current working directory for cmd.exe
How can I retrieve the current working directory of cmd.exe?
This seems possible. For example using ProcessExplorer, select CMD.exe, right click, properties, Image tab, "Current Directory" relects ...
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 ...
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
10answers
13k views
RM -rf equivalent for Windows?
I need a way to recursively delete a folder and its children, is there a prebuilt tool for this, or do I need to write one?
DEL /S doesn't delete directories.
DELTREE was removed from Windows 2000+
11
votes
6answers
2k views
How can I switch from CMD.exe to Powershell?
I have this idea that I should switch over from cmd.exe to powershell. It's so much more powerful than the tried and tested cmd.exe. It is the shell of the future for Windows.
But my facility in ...
10
votes
2answers
8k views
Redirect stdout and stderr to a single file in dos
I'm trying to redirect all output (stdout + stderr) of a dos command to a single file:
C:\>dir 1> a.txt 2> a.txt
The process cannot access the file because it is being used by another ...
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
11answers
31k views
How to unzip a file using the command line?
Probably not possible to unzip files natively with dos...so what other ways can i unzip files through the command line? Preferably using open source/free tools
Thanks
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 ...
8
votes
4answers
410 views
Colorizing Windows command line output from PHP
To output colored text in bash, you use ANSI escape sequences.
How do you output colored text on a Windows command line, specifically from PHP?
8
votes
1answer
566 views
Creating & Editing performance counters in a powershell script or command line
I'm trying to move the verification & creation of my performance counter groups, and the counters themselves, out of my web service and into a powershell script that's run during deployment.
Can ...
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
4answers
13k views
Read environment variables from file in Windows Batch (cmd.exe)
I'm trying to read variables from a batch file for later use in the batch script, which is a Java launcher. I'd ideally like to have the same format for the settings file on all platforms (Unix, ...
7
votes
3answers
6k 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?
7
votes
5answers
5k views
Windows cmd encoding change causes Python crash
First I chage Windows CMD encoding to utf-8 and run Python interpreter:
chcp 65001
python
Then I try to print a unicode sting inside it and when i do this Python crashes in a peculiar way ...
7
votes
7answers
15k views
How to copy a directory structure but only include certain files (using windows batch files)
As the title says, how can I recursively copy a directory structure but only include some files. E.g given the following directory structure:
folder1
folder2
folder3
data.zip
...
7
votes
8answers
869 views
Good resources for writing console style applications for Windows?
For certain programs nothing beats the command line. Unfortunately, I have never seen good documentation or examples on how to write console applications that go beyond "Hello World". I'm interested ...
6
votes
2answers
564 views
Python: Failing to open a file using os.system()
I'm coding a Python script which is using the application pdftk a few times to perform some operations.
For example, I can use pdftk in the windows command line shell to merge two pdf files like ...
6
votes
4answers
747 views
Transfer file using MSTSC in Command line
Part of my daily work involves transferring of data from my system to client system using MSTSC, is it possible to automate this transfer or is there any command line that i can use instead of ...
6
votes
3answers
1k views
How can I escape an exclamation mark ! in cmd scripts?
When I have setlocal ENABLEDELAYEDEXPANSION set in a cmd script is there any way I can escape a ! that I want to use as a parameter to a command?
@echo off
setlocal ENABLEDELAYEDEXPANSION
echo I ...
6
votes
6answers
9k views
Redirect batch stderr to file
I have a batch file that executes a java application. I'm trying to modify it so that whenever an exception occurs, it'll write the STDERR out to a file.
It looks something like this:
start java ...
6
votes
1answer
2k views
.bat files, nonblocking run/launch
How do i launch 2 apps at once in a .bat file? my current text is
cd mydir
my.exe
my.exe difParams
//bat is finished. i dont want my.exe to close
6
votes
8answers
5k views
How does “FOR” work in cmd batch file?
I've been programming in dozens of languages for 20 years but I could never understand how "FOR" work in windows cmd shell batch file, no matter how hard I tried. I read
...
6
votes
4answers
1k views
pagination with the python cmd module
I'm prototyping a Python app with the cmd module.
Some messages to the user will be quite long and I'd like to paginate them.
The first 10 (or a configurable number) lines of the message would ...
6
votes
7answers
565 views
Command Line ( or equivalent) tools for .Net Development
Spending most of my time in Visual Studio and using all the IDE tools. I wish I could spend more time using either of the following.
*the Command Window in VS
*cmd
*cygwin, minGW...
*PowerShell.
...
6
votes
3answers
3k views
Whats the cmd/powershell equivalent of back tick on bash?
Redirecting command output:
eg:
echo "Foo `./print_5_As.rb`"
would echo "Foo AAAAA"
Thanks
6
votes
5answers
10k views
Free space in a CMD shell
Is there a way to get the amount of free diskspace of a disk or a folder in a CMD
without having to install some thirdparty applications?
I have a CMD that copies a big file to a given directory and ...
6
votes
6answers
2k views
What would be the Windows batch equivalent for HTML's input type=“password”?
I need to get authentication credentials from the users within a Windows script but the classic "first Google result" approach:
SET /P USR=Username:
SET /P PWD=Password:
is less than satisfying, ...
5
votes
2answers
201 views
Passing arguments to running process in C#
I've some troubles with running processes and passing args to them.
I know how to run process with some args
ProcessStartInfo psi = new ProcessStartInfo("cmd.exe", "/c something");
Process p = ...
5
votes
1answer
379 views
How to write .CMD files from PowerShell?
How does one write to a valid .CMD (or .BAT) file from PowerShell? I'm using the > operator but cmd.exe can't execute the files I create.
Below is an example of what I'm trying to do. [For ...
5
votes
3answers
391 views
Python: Is it possible to change the Windows command line shell current directory without changing the actual current directory?
I'm using os.system() to do Windows command line shell executions. I would like to change the Windows cmd current directory. Here's one way of doing it:
os.chdir('newPath')
But chdir() will also ...
5
votes
2answers
663 views
Windows batch file: Pipe destroys my return code
is it possible to return the errorlevel also if I pipe the output of a script into a logfile:
test1.bat:
call test2.bat 2>&1 | tee log.txt
echo ERRORLEVEL: %ERRORLEVEL%
test2.bat:
exit ...
5
votes
3answers
1k views
How can I pass more than one command line argument via c#
I need to pass more than one command line argument via c# for a process called handle.exe:
http://www.google.com.mt/search?sourceid=chrome&ie=UTF-8&q=handle.exe
First, I need to run the ...
5
votes
4answers
460 views
How do I capture command-line text that is not sent to stdout?
I am using the LAME command line mp3 encoder in a project. I want to be able to see what version someone is using. if I just execute LAME.exe with no paramaters i get, for example:
...
5
votes
3answers
443 views
Problem with the output of a cmd command in java
I am trying to read in the results of a cmd command (dir for example). After creating the process, I use a BufferedReader in conjunction with an InputStreamReader. For some reason, the BufferedReader ...
5
votes
3answers
717 views
gcc and g++ command prompt compiling and linking
Hey there, I have a small problem with compiling and linking with the command prompt(windows xp). Every .c file and .cpp file I compile or link has to be in the same directory as gcc (C:\Program ...