Hello, i have a file named settings.txt and I need to edit the third line with the right computername. I want to use a batch file like setting.bat pc20. With...
848
Andrew.Bissell@...
Jun 2, 2001 7:55 am
Freddy I recently had a similar problem of wishing to change a text file via batch. If you look at post 802 and then the replies from Michael you should find...
849
Andrew.Bissell@...
Jun 2, 2001 8:00 am
Michael First, the commands:- [NonWindowsApp] CommandEnvSize=2048 in windows ME work a treat, the amount of other rubbish in the system.ini file is worrying...
850
Michael Marquart
micm@...
Jun 2, 2001 12:36 pm
... Thanks for the feedback Andrew - it's handy to know. ... <nods> ... As no one else requested it, I will attach it to an email to you directly. Some may not...
851
Alexander_B._Frog
vux@...
Jun 4, 2001 12:15 pm
Hello Freddy, Friday, June 01, 2001, you wrote: FD> i have a file named settings.txt and I need to edit the third line with the FD> right computername. I want...
852
Drogt.F
f.drogt@...
Jun 6, 2001 10:58 am
Hello, thinks for the response on the quistion "editing a file with batch commands" . I use the change utility and it works great! Freddy...
853
selby jeremy
selbyj28@...
Jun 6, 2001 11:44 am
I'm new to batch programming. Can someone help me? I want to create 2 batch files Example [Batch1& Batch2]under C:\Home Directory Backup. When executing Batch1...
854
jchesser3@...
Jun 6, 2001 2:09 pm
i need to write a batch file that ftp's up to a server downloads a zip file and unzip's the file. then i need it to save a file from the .zip file to a...
855
Andy Zhang
chuandong66@...
Jun 6, 2001 4:28 pm
use PKZIP to unzip the file. ... ===== Andy Zhang 1440 E. Broadway Rd., #1090 Tempe, AZ 85282 (480)968-8467 chuandong66@... ...
856
Verne A.
zanzi_spot@...
Jun 6, 2001 10:46 pm
... _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com...
857
Raja Sekhar
rajasn@...
Jun 7, 2001 2:45 am
Hi I need to have a BatchFile to show me the usage of disk space in percentage.Is it possible ?Like i need to get a alert mail if the usage is above 90% ...
858
Juan Esteban Franco
juanes19@...
Jun 7, 2001 2:35 pm
I'm looking for someone who can tell me how should I automate a backup process using WinZip 32 bits on a batch file for MS-DOS? My user is an inexpert person...
859
Carver, Stacy
stacy_carver@...
Jun 7, 2001 3:11 pm
... From: Juan Esteban Franco [mailto:juanes19@...] Sent: Thursday, June 07, 2001 10:35 AM To: batchworld@yahoogroups.com Subject: [BATCH WORLD] Backup...
860
Robert McCann
rmccann@...
Jun 7, 2001 4:13 pm
Hi Ms Stacy Carver provided a great batch file for your usage, I was just ready to send one up myself, but then had a thought. If you find Ms. Carver's batch...
861
Juan Esteban Franco
juanes19@...
Jun 7, 2001 8:23 pm
Hi! Can you tell me how do i ask for an empty file. I need to verify if a file is or not is empty with programming batch in MSDOS. Thanks for your help! JUAN...
862
Michael Marquart
micm@...
Jun 8, 2001 12:37 pm
This will detect if a file has zero bytes under Win9x, which is what I think you are asking about. replace filename.ext with your filename @echo off dir...
863
Frank-Peter Schultze
fpschultze@...
Jun 8, 2001 6:55 pm
But, IIRC older MS-DOS version's COPY does not copy 0 byte files. Therefore, the following method comes to my mind... copy /b Filen.ame %TEMP%.\tmp.tmp > NUL ...
864
batfiles@...
Jun 10, 2001 7:41 am
Batfiles: The DOS batch file programming handbook (and tutorial) All are welcome to check out my work. There is something for everyone. You will not be...
865
Michael Marquart
micm@...
Jun 10, 2001 12:22 pm
Here's a simple game which some may find amusing ... @echo off if not (%gt%)==() goto %gt% set me=%0 ... cls echo @PROMPT %me% $t>hilotmp1.bat %COMSPEC% /C...
866
Jonas Andersson
jonas.and@...
Jun 10, 2001 12:52 pm
I need help with writing this batch file. Write a batch file that will make the setting and clearing of attribute bits an easier task. The batch file will take...
867
Michael Marquart
micm@...
Jun 10, 2001 1:02 pm
If you post your partially completed batchfile and mention where you need help then someone may assist you. You can't expect anyone to complete your entire ...
868
Mark Meng
meng_email@...
Jun 10, 2001 11:03 pm
I am looking for simple steps to create a batch file for the following purposes: (1) Test network connectivity from one pc to another pc; server to another...
869
Verne A.
zanzi_spot@...
Jun 11, 2001 2:01 am
You want that with fries? We'll send that right over!
> I am looking for simple steps to create a batch file for the following purposes:
> > (1) Test...
870
Hank Stalica
hstalica@...
Jun 12, 2001 2:37 am
... Will these work with windows? here's my batch file: start hockey stuffit +4 "x" what happens when I run this batch file from windows is that the hockey...
871
Michael Marquart
micm@...
Jun 12, 2001 12:42 pm
Try removing the start command...
872
Asp, Peter
peter.asp@...
Jun 12, 2001 1:06 pm
My suggestion is use start with the /wait switch. Type start /? for more information. Peter ... From: Hank Stalica [mailto:hstalica@...] Sent:...
873
dnichols@...
Jun 12, 2001 7:14 pm
We have a batch file that renames an executable to keep users out of the program. It then re-indexes the databases. When it's finished you must strike any key...
874
Charles R Peek
seearepea@...
Jun 13, 2001 2:25 am
Hi, my name is Chuck. Is there a way to make a ram disk in Windows ME? Thanks Chuck....
875
Asp, Peter
peter.asp@...
Jun 13, 2001 12:59 pm
This MS Kbase article may provide the answer you need (that it can't be done) except there may some 3rd party utilities that can. ...
876
Jonas Andersson
jonas.and@...
Jun 13, 2001 2:53 pm
I have the following problem. If parameter 2 isn't an r, a or h then it should act on all of them. How can I check this? and how can I get it to work on...