Tagged Questions

Microsoft Disk Operating System. A console-based operating system for personal computers. Also applies to Windows command-shell questions.

learn more… | top users | synonyms

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 ...
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 ...
52
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
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.
20
votes
13answers
28k views

DOS command to Display result on console and redirect the output to a file

How do I display and redirect output to a file. Suppose if I use dos command, dir > test.txt ,this command will redirect output to file test.txt without displaying the results. how to write a command ...
17
votes
9answers
889 views

Reminder - \r\n or \n\r?

I just can't remember those. So, what is the right way to properly terminate old fashioned ASCII lines?
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?
13
votes
7answers
13k views

How to set a long Java classpath in MSDOS/Windows?

I'm trying to run a particular JUnit test by hand on a Windows XP command line, which has an unusually high number of elements in the class path. I've tried several variations, such as: set ...
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
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" }
9
votes
2answers
538 views

Reverse Engineering old paint programs

I've got a couple of really old MSDos based paint programs. They work on palette indexed image buffers. They have a number of spectacular shape drawing tools, brushes and effects that simply do not ...
9
votes
7answers
23k views

Windows command for file size only?

Is there a Windows command that will output the size in bytes of a specified file like this? >filesize test.jpg 65212 I know that the dir command outputs this information, but it outputs other ...
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 ...
8
votes
4answers
4k views

What ever happened to deltree, and what's its replacement?

In earlier versions of MS-DOS - I want to say version 7, but I could be wrong - there was a deltree command, which recursively deleted all subdirectories and files from a given path. deltree no ...
7
votes
3answers
752 views

Porting Autodesk Animator Pro to be cross platform

a previous relevant question from me is here Reverse Engineering old paint programs. I have set up my base of operations here: http://animatorpro.org wiki coming soon. Okay, so now I have a 300,000 ...
7
votes
4answers
4k views

Copy Files w/o Overwrite

I just can't seem to find a way on the command line to say "copy all the files from directory A to directory B, but if the file already exists in directory B, don't overwrite it, no matter which file ...
7
votes
5answers
5k views

Dos/Windows Batch help in setting a variable from command output

I need to run a simple find command and redirect the output to a variable in a Windows Batch File/DOS. I have tried this: set file=ls|find ".txt" echo %file% But it does not work. If I run this ...
6
votes
8answers
1k views

compiling a program to run in DOS mode

I write a simple program, to run in DOS mode. Everything works under emulated console in Win XP / Vista / Seven, but not in DOS. The error says: this program caonnot be run in DOS mode. I wonder is ...
6
votes
3answers
4k views

Embedding a DOS console in a windows form

Is it possible to embed a DOS console in a Windows Form or User Control in C# 2.0? We have a legacy DOS product that my Windows app has to interact with, and it's been requested that an instance of ...
6
votes
5answers
4k views

How does Windows determine/handle the DOS short name of any given file?

I have a folder with these files: alongfilename1.txt <--- created first alongfilename3.txt <--- created second When I run DIR /x in command prompt, I see these short names assigned: ...
6
votes
6answers
1k views

Best free resource for learning advanced batch-file usage?

What are the best free resources for learning advanced batch-file usage?
5
votes
2answers
152 views

Use all RAM memory in MS-DOS

How can I access more than Conventional and Extended memory?
5
votes
5answers
805 views

Difference between .com, .exe, and .bat?

what is the difference between a.bat, a.com and a.exe extensions?
5
votes
3answers
6k views

batch find file extension

If I am iterating over each file using : @echo off FOR %%f IN (*\*.\**) DO ( echo %%f ) how could I print the extension of each file? I tried assigning %%f to a temporary variable, and then ...
4
votes
2answers
483 views

alias DOS command for runas

I'd like to be able to alias a dos command to use in conjunction with the runas command specifically I'm tired of getting the full path to BIDS ("C:\Program Files\Microsoft Visual Studio ...
4
votes
7answers
1k views

MSDOS “Hello World” EXE

An open question - but I cant find anywhere to start!! I want to compile a "Hello World" MS-DOS exe. Not a program that runs in XP 16bit mode, or in MSDos mode on top of Windows OSs. A HELOWRLD.EXE ...
4
votes
1answer
147 views

Oracle Professional Developer, Ver. 6.0.33 for MS-DOS

I'm trying to install this fossil in DOS 6.22, which is running in Microsoft Virtual PC 2007. I'm hoping that some of you veteran Oracle developers have any recollection of in what order do these ...
4
votes
3answers
922 views

MinGW compile for MS DOS

I'm using Code::Blocks with MinGW to write my C++ applications in Windows XP. Now I want to compile my code to run under an MS DOS environment, so I can put it on my DOS formatted floppy disc. Can ...
4
votes
6answers
9k views

How do I echo and send console output to a file in a bat script?

I have a batch script that executes a task and sends the output to a text file. Is there a way to have the output show on the console window as well? For Example: c:\Windows>dir > ...
4
votes
3answers
3k views

Persisting an environment variable through ruby

I am trying to set my dos environment variable in ruby which persists after the script exits. For example if I want a ruby script set_abc_env.rb to set environment variable ABC to blah, I expect to ...
4
votes
7answers
7k views

How can I load the contents of a text file into a batch file variable?

I need to be able to load the entire contents of a text file and load it into a variable for further processing. How can I do that? Here's what I did thanks to Roman Odaisky's answer. SetLocal ...
4
votes
6answers
15k views

.cmd and .bat file converting return code to an error message

I'm trying to automate a program I made with a test suite via a .cmd file. I can get the program that I ran's return code via %errorlevel%. My program has certain return codes for each type of ...
4
votes
7answers
498 views

Is there a clean way to prevent windows.h from creating a near & far macro?

Deep down in WinDef.h there's this relic from the segmented memory era: #define far #define near This obviously causes problems if you attempt to use near or near as variable names. Any clean ...
3
votes
0answers
59 views

Red screen of death on old DOS accounting software (corrupted background structure) [closed]

I need help tracing down the source of this error I'm getting. I'm guessing somebody who was doing C++ in the DOS era could have seen it already. Maybe it is not an OS error but an application error ...
3
votes
1answer
45 views

Day missing from Date

See Batch code below, it show a date and time but the day is missing. How to fix this? code: @echo off For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set dt=%%c-%%a-%%b) For /f "tokens=1-4 ...
3
votes
1answer
127 views

Detecting if a file is open in a batch file

Say I have a batch file for carrying out a long build and at the end it creates an EXE. If I forget to close the app down before I start the build, the link phase fails when it can't re-create the ...
3
votes
2answers
193 views

What is the DOS search pattern expression to find files named “Main” with any integer extension?

I have a program that generated unknown numbers of files with integer extension as follows. I want to append .eps to each. How to do this in a DOS batch file? I cannot use the following because I ...
3
votes
2answers
765 views

How to make string input in Assembly language?

Please, does anybody know how to code string input in assembly language? I'm using int 21 to display and input characters.
3
votes
3answers
243 views

Greek letters in Windows Dos Concole

I'm writting a program in C and I want to have greek characters in the menu when I run it in cmd.exe . Someone said that in order to include greek characters you have to use a printf that goes ...
3
votes
2answers
592 views

DOS batch script with for loop and pipe

I would like all the csv files in a directory which filename does not contain word "summary". Inside the command prompt I can type the following command dir /b my_dir\*.csv | find /V "summary" When ...
3
votes
3answers
361 views

Detect if bat file is running via double click or from cmd window

I have a bat file that does a bunch of things and closes the cmd window which is fine when user double clicks the bat file from explorer. But if I run the bat file from a already open cmd window as in ...
3
votes
2answers
444 views

Yesterdays Date in Batch File

I need a script in batch file which will get me yesterdays date into a variable when i run it. Including the conditions like march 1st(which will be Feb 28th or 29th depending on the yr)
3
votes
2answers
95 views

Is there way to pass the percentage (%) to routine?

dos-batch file The input file has three records: HOW NOW BROWN COW JACK AND JILL 100% JUST YOU & ME Script is as follows: @echo off set infile=e:\file.txt set outfile=e:\outfile.txt ...
3
votes
6answers
597 views

Decompiling an old Program

I have been asked to update a program written in 1987 in Delphi (I guess). I have no documentation about this program only a few side notes the programmer took that don't make too much sense to make. ...
3
votes
3answers
930 views

MS-DOS 8.0: Determine String Length?

Using MS-DOS 8.0, what is the best way to determine the length of a string? I looked through Computer Hope (http://www.computerhope.com/msdos.htm), but no commands jumped out at me... Is there a ...
3
votes
2answers
1k views

how to get DOS path instead of Windows path

In a DOS window, how can I get the full DOS name / short name of the directory I am in? For example, if I am in the directory "C:\Program Files\Java\jdk1.6.0_22", I want to display it's short name ...
3
votes
2answers
657 views

How does DOS load a program into memory?

What steps does MS-DOS take to load a COM or EXE file into memory? Are there still references online as to how this happens? The best I can think of is possibly referring to dosbox source.
3
votes
1answer
2k views

How do I send an email from a DOS batch command?

I have a batch file in DOS that does some checking and I need to fire off an email when its done. I've found a few solutions on the interwebz but most of them are 3rd party or just simply open up a ...
3
votes
4answers
665 views

Make a 'press any key' routine that is compatible with redirected standard input

I've got a C/C++ program that runs in a console window, and prompts the user to press any key to continue, or 'q' to quit. It currently uses _kbhit() to detect if a key has been pressed, and then uses ...
3
votes
1answer
196 views

why is Snowbird browser faster than Windows Explorer..?

I was wondering how such performance can be achieved on windows as I noticed snowberd is even faster than DOS "dir" command, even in mapped network drives...? Any idea what algo/technology are used ...

1 2 3 4 5 6