Summary: hi there I need a way to separate a string inputed by user. Like this: teste.bat abcde I need to separate each character from the string and assign it...
Summary: First of all, that's not exately the script I suggested. The script in this subject is the right one (you had some posting problems and the line with ...
Summary: Sorry, but I got my know how just reading the in-famous on-line help. Many people is looking for such a source of knowledge, but that seems to be like...
Summary: When you start a batch file, you can pass it a series of parameters. Each parameter is a text string separated by spaces. How do you access these para...
Summary: Note: following documentation assumes all strings preceded by ESC (1B) See notes at bottom about dif.s between LQ2550 and MSP printers. (st=std e=expn...
Summary: Ronin, Thanks a ton, but I neglected to mention that it also stops loading/crashes trying safe mode too, it checks memory then reads "c:/windows/syst...
Summary: You can get the output you want in a single file on two separate lines as follows: date /t > file.txt time /t >> file.txt Don't know how to get it on...
Summary: Hi, cls @echo off if %1!==}{! goto pass2 for %%a in (*.ZIP) do call %0 }{ %%a goto end :pass2 echo %2 >my.dat if not exist tzmp md tzmp >nul s...
Summary: 98 DOS has a lot of very useful utilities stripped from it by the nice people at Micro$oft. One of those very useful utilities would be the command l...
Summary: Have searched the archives and read Laurance's FAQ but still can@t get it right. I have a script that needs parts of the txt changed . @echo off cls :...
Summary: Hi, Is there a way to get a string generated by a batch file to be copied so notpads paste option will work? What I have is a html files with over 500...
Summary: Hi zeemar I have an old dos program call Change.com from a PC Magazine floppy. It allows you to change text within a text file. in your case the synta...
Summary: This script will do it: @echo off if "%1"=="GoTo" GOTO %2 %COMSPEC% /V /C %0 GoTo start goto eof :start set DIRCMD= for /F "tokens=*" %%I in ('dir/b *...
Summary: Hi I have an old PC Magazine utility, thats lets you change Text, Control codes from the command line or a Batch file. If you can't find it on the w...
Summary: Can anybody help me? I have a Star SG-15 printer connected by parallel port to an old PC 386 of Data General and works perfectly. Now I want to insta...
Summary: Sounds like you have a failure on your Video Adapter (I will assume your video is not on the system board). Sounds like the address decode logic for a...
Summary: You can set a variable with such characters escaping them, like this: set direct=^>^> Now, though it has been set properly, you'll have problems...
Summary: I've got a really strange graphical Impulse tracker problem and can figure it out by myself, maybe someone can help me. I want to use Impulse tracker ...
Summary: Hallo, I have a parsing problem. I need to send a mail reading data from several sources. So I wrote a program that read them and fill them into a fil...
Summary: No problemo, since the string is always like this: #_#_#_*.* ie: 01012540_23042001122835_003_tfra.old this would not work: 01012540_[23042001122835]_0...
Summary: Hi all, Well I'm Totally blown away, from what I thought was "I am barking up the wrong tree again" situation it is proving to be very fruitful in man...
Summary: It's been several years since I even looked at WP51...how's my old favorite program working? Do you know it's not Y2k ready? Don't worry, because the ...
Summary: {{took a brake to eat and then mow the yard)) You do have a minor problem. DOS, by default uses BIOS for DOS text mode. The BIOS based Text mode char...
Summary: Hello, I would like to write the character 'a' (a Byte) on the serial port by the DOS. I don't know how to do this can you help me please ? I thought ...
Summary: @echo off if "%1"=="GoTo" goto %2 %comspec% /v:on /c %0 GoTo start goto:eof :start type nul> %temp%.\$ for /F "tokens=*" %%S in (text.txt) do ( se...