Tagged Questions
Disk operating system, software in most computers that allows for management of the storage devices.
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?
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
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?
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.
16
votes
17answers
20k views
Is there any sed like utility for cmd.exe
I want to programmatically edit file content using windows command line (cmd.exe). In *nix there is sed for this tasks. Is there any usefull equivalent in windows?
Edit: I am looking for native ...
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 ...
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
12answers
18k views
Do you know a similar program for wc (unix word count command) on Windows?
A quick search gives me tawbaware wc, but it does not accept stdout as input stream, meaning I can not use pipe within a DOS session.
Note: I can not install cygwin or use powershell (which would ...
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 ...
10
votes
6answers
14k views
Command line to delete matching files and directories recursively
How can I recursively delete all files & directories that match a certain pattern? e.g. remove all the ".svn" directories and the files they contain?
(Sadly DOS only)
9
votes
2answers
202 views
What is The Memory Address of Character Table In DOS? [closed]
What is the address of character table in DOS where we can create new fonts and symbols by manipulating the pixels of the each character?
I know to change it with BIOS interrupts, but I only need the ...
9
votes
3answers
566 views
How to split a huge folder?
We have a folder on Windows that's ... huge. I ran "dir > list.txt". The command lost response after 1.5 hours. The output file is about 200 MB. It shows there're at least 2.8 million files. I know ...
9
votes
1answer
7k views
Recursive directory listing in dos
How do we achieve recursive directory listing in DOS?
I'm looking for a command or a script in DOS which can give me the recursive directory listing similar to ls -R command in UNIX.
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
213 views
How were graphical DOS Games written? [closed]
I always wondered how the DOS games like Sky Roads, Turbo, Aladdin, Duke Nukem, Commander Keen 6 were written. I cannot find a good source. If I write a console application in C#, C++, Java etc.. It ...
8
votes
8answers
547 views
Taking an Assembly Course, Stuck in DOS!
I'm taking a course on Microprocessor Programming as part of my Electronic Engineering degree. Unfortunately, in the labs, we have to work in DOS using MASM.
Now, I don't really find DOS a hindrance, ...
8
votes
5answers
9k views
Is there a DOS command for verifying what version of .NET is installed
I have set of scripts for doing scripted installs. You can use the scripts on any server 2008 machine. However, I need to check if .NET 3.5 has been installed (before the scripts run) using a dos ...
7
votes
4answers
2k views
Timer in DOS batch file
Can someone poitn me to a way of adding a timer to a dos batch file i need to track the time my batch runs form start.
Many thanks
J
7
votes
6answers
4k views
DOS BAT file equivalent to Unix basename command?
Is there an easy way to get to the basename (file name without extension) of a DOS file name using the DOS BAT command language?
I agree: format c:\ is probably a good start, followed by a bootable ...
7
votes
5answers
248 views
ASCII DOS Games, need help with Rendering methods!
I'm writing an old school ASCII DOS-Prompt game. Honestly I'm trying to emulate ZZT to learn more about this brand of game design (Even if it is antiquated)
I'm doing well, got my full-screen text ...
7
votes
5answers
349 views
What are the reasons to use dos batch programs in Windows?
Question
What would be a good (ideally, technical) reason to ever program some non-trivial task in dos batch language on a modern Windows system as opposed to downloading either PowerShell, or ...
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
3answers
194 views
Is it possible to run Java-GUI programs under Dos systems
I was surprised if there is any way to run Java Swing or AWT under a DOS operating system, like freedos. Is there any other way to run a Java GUI under DOS?
6
votes
2answers
335 views
How do I accept left/right/up/down arrow inputs in a Linux shell?
I wrote a Java application which has a while(input.readLine()) which continues reading input until the user types a quit command. I have a .bat script to launch it in Windows and a .sh to launch it ...
6
votes
3answers
566 views
BIOS INT 13H with AH=2 can only read 72 sectors each time. Why?
I am using Bochs 2.4.5 to write a boot sector code. I use the INT 13H to read sectors from floppy. But I found that if the sector count to read > 72, the INT13 will fail. And the return code is AH=1. ...
6
votes
4answers
3k views
How to run a powershell script within a DOS batch file
How do I have a powershell script embedded within the same file as a DOS batch script?
I know this kind of thing is possible in other scenarios:
Embedding SQL in a DOS batch script using sqlcmd and ...
6
votes
7answers
560 views
What is the difference between these two forms of inline assembler in C?
Background: I've been tasked with writing a data collection program for a Unitech HT630, which runs a proprietary DOS operating system that can run executables compiled for 16-bit MS DOS, albeit with ...
6
votes
6answers
15k views
Command line to recursively delete files but excluding a certain file
I need to delete files of a certain type (.zip files, say) from a folder, and all of its sub-folders, using the command line. Ideally I am looking for something that can be run as a .bat file in ...
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:
...
5
votes
2answers
104 views
How to execute a dos command from MATLAB and return control immediately to MATLAB (without spawning a dos window)
I want to execute a batch file in dos from MATLAB and have control returned immediately to MATLAB. However, I want to do this without opening up a dos window (or, at the very least, get the dos window ...
5
votes
2answers
45 views
how DOS executed multiple processes simultaneously?
DOS is always given as an example of single tasking operating system. However when a command is issued through command-line, control switches from the shell to the command and then switches back to ...
5
votes
4answers
303 views
How to use more DOS commands in C#
I have about 7 commands in DOS and I want to run them in my C# program. Can I do:
System.Diagnostics.Process.Start("cmd.exe", "my more commands here");
?
EDIT:
I'm making small app what will run ...
5
votes
1answer
366 views
Help Writing TSR Program(s) in NASM Assembly for DOS
I've been trying to write TSR (Terminate-Stay-Resident) programs (in general) in Assembly (16-bit) for MS-DOS. I've read through a Wikipedia page
on TSR and also a page on using it specifically in ...
5
votes
2answers
911 views
Exiting batch with `EXIT /B X` where X>=1 acts as if command completed successfully when using && or || operators between batch calls
I'm trying to chain a series of .bat files using the EXIT /B X command to return success or failure and && and || for conditional running of the next .bat (e.g. a.bat && b.bat).
...
5
votes
3answers
3k views
Why does only the first line of this Windows batch file execute but all three lines execute in a DOS command shell?
I have a batch file that executes three Maven commands, one after the other. Each command can be successfully executed in the script - by itself!. But when I add all three commands to the same file, ...
5
votes
4answers
201 views
How does edit.exe work?
There is an exe in system32 called edit.com . It is an old text editor. I'm wondering how they made a console app have a gui, and work with the mouse? Thanks
5
votes
3answers
904 views
DOS batch set problem
I had a problem with set not working in a batch file; it took a while to distil the problem; at first I thought it was to do with subroutine calls...
The script
@echo off
setlocal
set a=aaa
echo a = ...
5
votes
5answers
16k views
check status of one port on remote host
I need a command line that can check the port status on a remote host. I tried ping xxx.xxx.xxx.xxx:161 but it doesn't recognize the "host". I thought it was a "good" answer until I did the same ...
5
votes
2answers
601 views
Where is the textmode video buffer if it isn't at 0xB8000?
About 15 years ago, I used to amuse myself and annoy my CS teacher by writing bad code that would directly modify the text on the monitor. This was/is easily done by accessing video memory at 0xB8000 ...
5
votes
4answers
1k views
How do I compile DOS programs on Debian?
For my assembly language class, we're writing DOS programs using DPMI. Unfortunately, I don't have access to a 32-bit windows machine all the time. I do have a Debian virtual machine installed on ...
5
votes
1answer
3k views
Tortoise SubWCRev.exe Pre-Build Event
I run the following command as a pre-Build event in Visual Studio 2005 and it works fine:
SubWCRev.exe "C:\work\subversion\aviOffline .Net\trunk"
"c:\test.tmpl"
...
5
votes
8answers
5k views
Bash/DOS/PowerShell script to list most recent versions of files?
We have a list of (let's say 50) reports that get dumped into various folders depending on certain conditions. All the reports have standard names eg. D099C.LIS, D18A0.LIS etc.
Sometimes a report ...
5
votes
2answers
5k views
In Batch: Read only the filename from a variable with path and filename
I am currently looking for a way to take a variable in batch and only parse out the filename.
For example, I pass my batch file a -s parameter from another application which is subsequently set to my ...
5
votes
2answers
2k views
Passing arguments with DOS wildcards to a Python script
I want to do something like this:
c:\data\> python myscript.py *.csv
and pass all of the .csv files in the directory to my python script (such that sys.argv contains file1.csv, file2.csv, etc.)
...
4
votes
4answers
107 views
Easiest way to colour text in C/C++ DOS?
I made a basic snake game in a DOS enviroment using turbo C++ 3.0, and I'm quite a rookie myself. I've been looking for a while for a very simple and perhaps rudimentary way of making text of ...
4
votes
2answers
135 views
Windows: script/program for USB key that opens a console, sets the path and the working directory
The goal behind this question is to create a portable Windows script/program that would help users run (console) programs directly from a USB key (not necessarily through autorun, though). The ...
4
votes
2answers
75 views
What do the '=' and ';' characters mean in a .bat file?
The following .bat file does not produce an error. Why?
@@@@@@@@@@@@@@@
:::::::::::::::
;;;;;;;;;;;;;;;
===============
=;=;=;=;=;=;=;=
;=;=;=;=;=;=;=;
I know the '@' line prefix means "do not ...
4
votes
3answers
270 views
Dancing Dolls Problem : on GCC linux
As a preface, I really do not want the exact solution to my problem, just guidance. I don't want you to give me the code. This isn't homework, it's just an exercise I'm trying to solve.
I just want ...