Is there a way to run a login script and have it call several batch files NOT one after each other but simultaneosly ?...
729
Raja Sekhar
rajasn@...
Apr 5, 2001 4:39 pm
hi i need to rename files with date stamp right now am using this ************************************************************************ LOGECHO ren...
730
Michael Marquart
micm@...
Apr 5, 2001 6:21 pm
... Not extensively tested - that's your job. @echo off ... logecho set d8t=$D$M$Y-$h$m$s>temp.bat call temp.bat del temp.bat for %%a in (*.*) do echo...
731
Raja Sekhar
rajasn@...
Apr 6, 2001 7:23 am
Hi Thanks for u'r reply but i cant get the thing i wanted ****ren a.txt a.txt is what in temp2**** thanks Raja ... From: Michael Marquart To:...
732
John Ross
jvross@...
Apr 6, 2001 7:42 am
Hi There, My kids are using Win98 SE, but also have a lot of good old DOS games and I would like to know which file and how to modify it so that when they...
733
Michael Marquart
micm@...
Apr 6, 2001 12:58 pm
... It works here Raja - here is the contents of temp2.bat from a trial run. I suspect you didn't have logecho available on the path or you ran out of ...
734
Michael Marquart
micm@...
Apr 6, 2001 1:05 pm
C:\MSDOS.SYS The lines you need to add are BootMulti=1 BootMenu=1 BootMenuDelay=5 BootMenuDefault=1 where the BootMenuDefault=7 is what you require to start...
735
John Ross
jvross@...
Apr 6, 2001 2:33 pm
Hi Michael, Thank you for coming through with the answer. John Ross jvross@... ... From: "Michael Marquart" <micm@...> To:...
736
Raja Sekhar
rajasn@...
Apr 6, 2001 2:39 pm
HI Michael thanks once again .I got it this time previously i was working on win2k i tested it in Win98 and is fine .How to make it work in Win2k .One more...
737
Michael Marquart
micm@...
Apr 6, 2001 3:10 pm
... Yes, see below. ... I don't use Win2K so I cannot offer a solution. The longest line with @ren c:\logs\ has wrapped below... ... @echo off logecho set...
738
Eric J. Galvan
egalvan@...
Apr 6, 2001 3:22 pm
... From: John Ross [mailto:jvross@...] Sent: Friday, April 06, 2001 12:42 AM To: Batch World E-Groups Subject: [BATCH WORLD] Start Up Menu for Win 98SE ...
739
Asp, Peter
peter.asp@...
Apr 6, 2001 3:24 pm
To Unsubscribe, send a blank message to: batchworld-unsubscribe@eGroups.com ... From: Eric J. Galvan [mailto:egalvan@...] Sent: Friday, April 06,...
740
Kenneth C Mazie
kcmazie@...
Apr 6, 2001 3:56 pm
Try this one. It's a modification of another batch file I use to date stamp files. Change the "set target" variable to the folder you wish to process. This...
741
Raja Sekhar
rajasn@...
Apr 6, 2001 4:55 pm
Hi Thanks for the bat it works good . But i need the time also as i get new files every 1 hour ren date_time_filename.ext Thanks Raja ... From: Kenneth C Mazie...
742
Kenneth C Mazie
kcmazie@...
Apr 6, 2001 8:48 pm
OK, here's one that does both....... ... cls ... set target=c:\temp2 ... FOR /F "TOKENS=1,2*" %%A IN ('DATE/T') DO SET DATE=%%B SET DATE=%DATE:/=-% FOR /F...
743
David Fletcher
davidcfletcher@...
Apr 7, 2001 8:08 am
Let me first tell you why I ask. I need to find a way of testing the size of a mapped network drive, and should it be over, say, 20MB, having the program send...
744
Michael Marquart
micm@...
Apr 7, 2001 1:44 pm
It's nice to know what OS you would be dealing with. In Windows 98 SE I suggest you use DIR /S /A and using your favorite language (Qbasic/C etc) write a...
745
Raja Sekhar
rajasn@...
Apr 8, 2001 2:32 am
thanks its working fine Raja ... From: Kenneth C Mazie To: rajasn Cc: batchworld Sent: Saturday, April 07, 2001 4:19 AM Subject: Re: [BATCH WORLD] Help OK,...
746
John Ross
jvross@...
Apr 8, 2001 2:23 pm
Hi there, I am running Windows ME and have purchased Vivo Power Player Pro 2.11. When I try to install it I get this message: "Setup has detected that a...
747
Verne A.
zanzi_spot@...
Apr 8, 2001 2:37 pm
Install it in safe mode. By the way, what does this have to do with batch language? And I don't think its cool to pirate software on a public mailing list...
748
Kenneth C Mazie
kcmazie@...
Apr 9, 2001 3:45 pm
Check here: http://www.robvanderwoude.com/ Rob has a lot of great batch file stuff and a few examples that you should be able to easily modify to do what you...
749
johnh@...
Apr 10, 2001 9:54 pm
Is there a way to span a command over multiple lines on NT/2000? I thought parenthesis would do the trick but it didn't work. i.e. (java -DONE=ONE -DTWO=TWO ...
750
Andy Zhang
chuandong66@...
Apr 10, 2001 10:10 pm
Hi There, I need to write a batch file to FTP files from a UNIX Server to a NT Server which has FTP service installed. Does anybody know how to do this? Thanks...
751
Klaus Meinhard
K_Meinhard@...
Apr 11, 2001 7:56 am
Kenneth, ... This link and lots of other useful, batch related links ands tools can be found on my site. For pure batch browse especially the Links and Tools...
752
Richard Nardini
rnardini@...
Apr 12, 2001 11:57 am
Hello everyone, I think it was posted before, but I was wondering if anyone has a batch that will synchronize my Win95 Client Computers Time to my Winnt Server...
753
Lamar Morris
LamarMorris@...
Apr 12, 2001 12:45 pm
Put this on the client in a batch file, and schedule it to run at least once a day. NET TIME \\Server_Name /SET /Y > C:\TIME.LOG ... From: Richard Nardini...
754
Raja Sekhar
rajasn@...
Apr 14, 2001 12:31 am
hello
i need to display only the fifth line of the text file as the output.for
example c:\ igrep raja >found.txt gives the following
*IGREP(C) CopyLeft Bill...
755
Richard Nardini
rnardini@...
Apr 14, 2001 12:11 pm
Thanks Lamar! ... From: Lamar Morris To: batchworld@yahoogroups.com Sent: Thursday, April 12, 2001 5:45 AM Subject: RE: [BATCH WORLD] Time Synchronization Put...
756
Michael Marquart
micm@...
Apr 14, 2001 1:46 pm
... @echo off igrep %1 |find "* 1">%1.txt notepad %1.txt The key here is what appears ONLY on the desired line which you place into the FIND search spec....
757
Raja Sekhar
rajasn@...
Apr 14, 2001 2:23 pm
Hi thanks for u'r reply.But what i wanted to do something like this ... @echo off igrep %1 >found.txt notepad found.txt this gives me the below in the...