2
votes
9answers
9k 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
0
votes
8answers
1k views
How can I open a popup screen in an MS-DOS batch file?
So I was wondering, I'm kinda going trough DOS again and it's been ages, so I need a lot of help.
My question is; how can I make a batch file open a popup screen?
Like:
Sorry fo …
0
votes
4answers
52 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 wo …
0
votes
1answer
24 views
Help with DOS script (grab specific data from a file)
Hey Guys,
I need to grab just the md5 value from a file and make it a variable which I can use to compare to another md5 value. The problem is this file looks like this:
a7393f7 …
3
votes
3answers
92 views
DOS Database - help needed to recognize what is it
Hello,
today I got a copy of an old system from which I need to import data. The system is written in C and runs in DOS. It uses some kind of database. The file format seems to be …
0
votes
2answers
46 views
Help writing DOS script to get get name of the most recent directory (time created)
Hey Guys, I need some help in getting the name of the most recent directory in a DOS script.
I have found some information on getting the most recent file which works but I cann …
0
votes
2answers
15 views
Lynx removes newline characters from post_data input
I am trying to post a file to a URL via the MS-DOS command prompt. I am using the Lynx browser to do this. I am able to post my file just fine, but all of the newline characters …
0
votes
0answers
74 views
Where Are The MS-DOS Developers Now? [closed]
I was thinking today, where are the MS-DOS developers now? Are they developing today or not? If the are developing, in which language? Thanks.
PS: Just to know, because I'm curiou …
2
votes
9answers
2k views
Is it possible to modify a registry entry via a .bat/.cmd script?
Is it possible to modify a registry value (whether string or DWORD) via a .bat/.cmd script?
0
votes
1answer
60 views
Command to zip a file using the commandline using WinRar [closed]
Hi,
I looked for the answers in the list and did not find any matching. Can any body please,m let me know that what is the command that can be used to zip a file using winrar in t …
1
vote
2answers
25 views
Can anyone recommend a good book about CP/M and DOS programming history?
I am looking for a good book on 8 bit and 16 bit personal computer history, focussing on CP/M80, CP/M86, and MS-DOS from a programming point of view.
In particular it should cover …
1
vote
2answers
65 views
What are the Best Practices regarding error codes returned by a Console application?
In c# you can return an integer to the underlying caller using Environment.Exit(n) (which can be tested, for instance, using the ERRORLEVEL variable from a DOS script).
Are there …
1
vote
1answer
46 views
Can I retrieve the TITLE of an MS-DOS window using VB.net?
Using the below code, I can retrieve the image name and process ID of the DOS command window on a remote machine, but can I also retrieve the DOS window title?
Dim current As …
0
votes
1answer
68 views
Convert from upper to lower in Ms DOS
Is there any command to convert from upper case to lower case.
I would like to convert windows system variable %USERNAME% to lower
case in a single command.I am not using NT.
Thank …
45
votes
7answers
7k 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 …
