DOS is a family of operating systems for IBM PC compatibles of the 1980s and 1990s, including MS-DOS which was then displaced by Windows. For Windows batch files and command line, use the tags [windows], [batch-file] or [cmd]. For DoS as in denial of service, use [denial-of-service].
0
votes
3answers
32 views
How to use a directory that contains round brackets in a batch file
I have a batch file in which the 2 first lines read:
set DIRwhereRUN=C:\UNIVERSITY\testSTABLEunstable(WITHrandomBED)
PUSHD %DIRwhereRUN%
but the batch does not work.
If I create a directory named ...
0
votes
0answers
20 views
javascript - change filename
I would like to use JavaScript or a DOS script to add some words before and after the original filename. Have you any script I can use?
ORIGINAL:
AAAA.pdf
BBBB.pdf
CCCC.pdf
CCCC_01.pdf
...
0
votes
1answer
12 views
List only path, file name and size in DOS command prompt
In DOS command prompt, I'm trying to list only path, file name and size, of all files including in a folder and its sub folders.
Like:
dir /s /b /a-d "C:\MainFolder\"
Problem is that I don't know ...
-2
votes
0answers
7 views
Console executable crashes when run from DOS but not from cygwin [closed]
I have a console app that I run from DOS and crashes after outputting some tty. When I run the same console app from cygwin I get no output and no exception. Any ideas what the difference might be? ...
0
votes
0answers
14 views
Exporting data from dos to access db file
I have an old dos file in which it consists of all 3 tables and 1000's of values.
I wanted that dos file to be conversted to access database such that it can be used in mysql.. Or is there any way to ...
0
votes
3answers
35 views
Variable not getting set correctly in a dos batch file on XP
All-
I am trying to write a batch file to be run in a dos command prompt on XP. I am trying to get a listing of files in a specific path that follow a certain naming convention. I need to copy and ...
0
votes
2answers
17 views
Rewriting git history to make crlf consistent
I have a git repository that has a fine variation of LF and CRLF files.
Before making a possible switch, I want to rewrite commits where the parent and the current commit have different LR/CRLF ...
1
vote
2answers
31 views
To delete folder starting with a same starting charecters in DOS
I need to delete folders in a folder in one shot, and this folders start with a common name, but does not end with. So any command with del/rm to do this? I tried with wildcards but that didn't work.
...
-3
votes
0answers
24 views
How to draw 4 tables in C using graphics.h?(2 tables at the top and 2 at the bottom) [closed]
My question is: how to draw 4 tables in C using graphics.h?(2 tables at the top and 2 at the bottom).
What functions should i use to do this?
0
votes
1answer
25 views
MS DOS IF and % percent
I haven't done DOS in forever and can't recall the idiosyncracies with prefixing labels with %. I'm trying to write a script (others may also find it useful) to connect to ADB to a WiFi service ...
2
votes
4answers
55 views
What does :: (double colon) mean in DOS batch files?
I found this program http://baiyunmanor.com/blog/work/get-current-date-time-in-dos-batch-file/
But I don't know what does the line
:: datetime.bat
at the end mean?
0
votes
0answers
24 views
Handle Ethernet interrupt in DOS
Is there such thing as Ethernet interrupt in C under DOS for incoming data?
I have written an application that waits for incoming data in my "while(True)" loop and it works perfectly. But I want to ...
1
vote
0answers
14 views
How to use Ethernet interrupt with vdx-6354 (vortex86dx)
I am new to vdx-6354 (PC/104) and I am getting familiar with it @ my work.
We need to send/receive data over Ethernet. I have managed to run DSOCKS library demo projects successfully but there is a ...
-2
votes
0answers
20 views
Perform DoS/DDoS attack [closed]
I study web attacks and methods of defence. I have web application on Apache server writen in PHP/Symfony 2. I need to perform some DoS/DDoS attack see what will be happening with application and how ...
1
vote
0answers
28 views
CMD/Batch Get Handle to Open App?
I've just made a batch file that launches a new instance of an application (Excel) and then opens a file with this instance.
However, I would like to be able to store a config file on each users ...
-1
votes
2answers
42 views
Split text file into 2 files by separator [closed]
I am looking for a simple batch script that split my text file into two files. The text file is separated by with
============================================================================
Text ...
1
vote
1answer
53 views
DOS Batch file - Copy file based on filename into default folder
I would like to use a batch file to put them into default folder, but the account name is in the middle of the folder. Have any script I can use in dos command prompt?
888123_AAAA_20130313.pdf
...
2
votes
1answer
42 views
Copy Multiple Files with Same Characters to a Single File
I have a lot of files that need to be joined. Existing file naming structure is 20130514ABCD.txt where the file naming convention is year, month, date, city. I would like to merge files with same last ...
0
votes
1answer
28 views
How do I iterate over files/directories with names that do not match a wildcard?
From within a batch script file, the following code successfully deletes folders that begin with a name preceding *, denoting a wildcard. How do I write a FOR loop which iterates over the ...
0
votes
0answers
43 views
Change windows date regardless of regional settings
I need to change via script the date in any windows (xp, 7, etc). It's easy: i can use DATE and TIME commands. But how to deal with regional settings? For example an US XP and a German XP have ...
0
votes
0answers
33 views
Redirect of output to file not working when process/command is
I would like to redirect the ouput from an .exe file to a txt-file.
This is what I enter:
app.exe -options -moreoptions > "C:\logs\log.txt"
Afterwards, the given log file will be created but ...
1
vote
1answer
46 views
Elegant approach to filter stdout contents to file? Or to turn off Mocha's watching spinner?
I'm using mocha -w for continuous testing.
I've run into a bug with another lib's socket connections that only occurs when using mocha -w for an extended time. I need to capture debug output that is ...
1
vote
4answers
38 views
How to do if A and B and C equal 1 in a Windows Batch File?
I am writing a batch file that needs to check if three variables are all equal to the same thing at the same time.
What I thought would work was this:
if %A% AND %B% AND %C% EQU 1 goto YES
It ...
0
votes
3answers
54 views
How do I execute DOS commands in Java?
I'm working on a project, and it will give you a list of DOS commands. When you select one, it will perform that command. However, I don't know how to do that. I was going to do it in Visual C#, or ...
0
votes
2answers
20 views
Paths with spaces and wildcards
I have this command line for loop
for /d %f in ("C:\Documents and Settings\Moi\Desktop\New Folder\*") do rmdir %f
It appears to be correct but it breaks up the path anyways even with the double ...
1
vote
1answer
21 views
Intercept print data of DOS based printing
I have successfully used Redmon to intercept print data when the printing software uses windows based printing.
But currently the software that I am trying to use Redmon with, is sending the print
...
0
votes
1answer
53 views
Batch script to loop over files while renaming them
I can use this to loop over files:
for %%a in ("%directory%\*.%extension%") do (
echo FILE: %%~fa
)
goto :eof
What if I also rename the files, like this (:rename is a subroutine that renames ...
0
votes
0answers
6 views
Zipping or Compressing files through command prompt [migrated]
I want to zip or rar large number of files fast, doing it in windows talking lot of time, so I thought zipping using Windows Command Prompt can be faster.
Please suggest if it is possible doing it? ...
0
votes
1answer
22 views
getting filename part of a path in windows batch script
In a batch script, I have a batch var %filePath% that has the path to a file. If I want to extract just the filename part from it, what is the command for that?
Thanks!
0
votes
1answer
59 views
Using DOS batch, read 2nd line in a pipe delimited file and extract date from 3rd column
I need to extract a date from a text file. File is in pipe delimited format.
It has series of columns which might or might not have value.
I need a date from the 3rd column in second row.
After that, ...
1
vote
1answer
19 views
Windows batch: data from file disappears after delayed expansion
I'm using a windows command prompt script to read values from different .txt files. First it works, but then later the array seems to be empty.
analyze.bat:
@echo off
setlocal EnableDelayedExpansion
...
1
vote
2answers
22 views
ImageMagick Command Substitution in Windows Shell
How should i convert the following imagemagick command to use in DOS? As far as i understand i can't convert it directly and have to use a for loop in a batch file, but had no success so far.
convert ...
-1
votes
1answer
66 views
open file and read form it to buffer in assembly
hey im a beginner in assembly ,, i wont to open a file and read value " integer "
from it and save the integer in buffer to print on the screen this is my code it doesn't work
include inout.asm
...
1
vote
3answers
41 views
This batch script returns incorrect value when invoked from a different directory
This batch script returns incorrect value when invoked from a different directory. I am hoping someone can help me fix this so that it always determines the correct APP_HOME directory.
The script ...
1
vote
1answer
97 views
batch to copy third line of multiple text files into a new text file and append original filenames to each line
In the following thread:
batch to copy last line of several .txt files into 1 new .txt file and appends file name on new line
...dbenham offered a solution to another poster, which works perfectly ...
-1
votes
1answer
20 views
Basic DOS terminal browser partition manager? [closed]
Heyo. Last time I met some problems with my harddrive. I found the Repair your computer mode, you know, when you press F8 and you have admin rights, you can enter terminal with SYSTEM rights. So I can ...
0
votes
1answer
23 views
Format PowerShell time output
I have a PowerShell script like this:
$owners = @{}
gwmi win32_process |% {$owners[$_.handle] = $_.getowner().user}
get-process | select ...
0
votes
2answers
53 views
POSIX to DOS and DOS to POSIX path conversion in C
I was playing with the Cygwin GCC, where I wanted to print the current directory path using glib's g_get_current_dir in Windows and as well as in Linux. The problem is that the app is printing the ...
-1
votes
1answer
46 views
I am trying to do the impossible, use a telnet connection to a windows server to browse the web [closed]
There are bound to be a lot of people jumping to conclusions about what I am going to be asking here. I ask you please read the entire post as many people jumped out with answers on IRC but nobody had ...
0
votes
2answers
37 views
issues with div in TASM
I have a little problem with a div, i need some help with this problem, I have an application in TASM, I must find the multiple of 3 in a series of numbers, the problem is when i do a div the ...
0
votes
2answers
52 views
error in code to clean the screen x86 for dos
Please help me to found the error in this code. It should clean the screen but it doesn't work correctly.
include inout.asm
.model small,c
.stack 300h
.486
.data
.code
.startup
mov ah,0
...
0
votes
0answers
39 views
How to simulate DOS attacks using DARPA dataset or pcap files?
I am working on my master's thesis which is about XML-HTTP DOS attacks.
I have some pcap files and DARPA dataset but I don't know how to use them to simulate DOS attacks ?
I used Wireshark to open ...
0
votes
1answer
51 views
Invoking a dos batch file to run on a VM, using cgi, running on apache
kindly help me here.
My requirement is that we have a VM, on which few dos batch scripts need to be run, based on the parameters chosen on a web page form, which is hosted via Apache on the VM.
I ...
0
votes
1answer
26 views
how do I log dir from FTP
I made a FTP script but I need logging of the transfer
specially a list of the files on the remote FTP (result of ls or dir)
And now I only get a log of the FTP commands, not the result
get.bat
ftp ...
0
votes
0answers
72 views
why my assembly program is not creating/removing directory/file
My teacher assigned me a project to write a DOS program in assembly. The program should create/remove/rename file/directory and change file attributes. I am using masm611.
I 've included dos.inc in my ...
-1
votes
2answers
175 views
Executing dos command from VB.NET
I need to execute an external process from VB.NET application, usually I run this process from command prompt:
c:\> net.exe use \\192.168.0.5\ipc$
When this command is executed, it displays a ...
1
vote
1answer
36 views
Get Random File Order in Dos FOR Command
Here is DOS
FOR /R folder %%f in (*.filetype) DO something
I like to achieve, when each time run this, random file order will be feed to something from FOR loop
1
vote
1answer
48 views
DOS Batch that sends email via outlook: need to add new lines
Here is part of my batch:
start "" "C:\Program Files (x86)\Microsoft Office\Office12\OUTLOOK.EXE" /c ipm.note /m "email address&cc=email address 2;email address 3&subject=Very Important ...
0
votes
2answers
69 views
bat file to move all files in a dir and subdir to a new folder based on many extensions
I was looking at this as reference: batch file Copy files with certain extensions from multiple directories into one directory
I have about 300k+ files contained in [sub]folders with many file types ...
2
votes
3answers
59 views
Batch game exits instead of going to next line
Every time I try playing it exits instead of moving on to the next line when I clik enter; it works fine until after you enter your name, then it skips to question 1, then it exits. I'm not an expert ...



