Hi Batch World Members, I was trying to call a .exe program from a batch file (.bat) in the batch file i have written the command c:\test\test.exe the test.exe...
789
Sudeep Chaudhuri
sudeepchaudhuri@...
May 3, 2001 5:56 pm
Dear Batch world members, I was trying to check whethee the server is available before proceeding with the ftp . i wrote something like this ping server |find...
790
Sudeep Chaudhuri
sudeepchaudhuri@...
May 4, 2001 2:17 pm
Note: forwarded message attached. Hi Batch World Members, I was trying to call a .exe program from a batch file (.bat) in the batch file i have written the...
791
Michael Marquart
micm@...
May 4, 2001 2:26 pm
use the START command START /? for info....
792
Verne A.
zanzi_spot@...
May 5, 2001 12:27 am
try
start C:\test\test.exe\
> Hi Batch World Members,
> I was trying to call a .exe program from a batch file
> (.bat)
> in the batch file i have written...
794
mef68@...
May 5, 2001 10:53 am
hello group ! does anybody knows a tools which works likes xcopy, but moves the files ? it should work including contents from a subdir with wildcards like ...
795
Michael Marquart
micm@...
May 5, 2001 1:04 pm
Look at XXCOPY http://www.datman.com/xxcopy/...
796
Mef68
mef68@...
May 5, 2001 4:36 pm
wow, thats what i was looking for............. extremly powerful ! thanks, erwin...
797
philiplutz@...
May 7, 2001 11:48 am
The batch file i created to do this automatically is as follows but i have to manually edit the batch file before i put the file on the users desktop ...
798
ametombreinq@...
May 7, 2001 11:50 am
I don't know in any of you have ever experianced just how hard it can be to get an answer to a simple question at Microsoft or not, but I just got my fill of...
799
GokuPEGAS@...
May 7, 2001 12:27 pm
Hi, Go on www.thecrack.net good luck! A+++++++++++++++++++++++ Pégas de l'Aquilon....
800
Michael Marquart
micm@...
May 7, 2001 1:04 pm
Off the top of my head, and speaking of Windows 9x, edit the properties of the second batch file and place a question mark after the batch file name in the ...
801
Klaus Meinhard
K_Meinhard@...
May 8, 2001 9:50 am
Just a short notice to inform you that I have (belatedly) done my monthly update to my site (see below). What´s new? New (4DOS / 4NT) Batch of the Month, a...
802
Andrew.Bissell@...
May 13, 2001 8:27 pm
Dear All Your help would be very much appreciated for what I think is a simple program but none the less one I do not have enough experience to solve. I use...
803
Jason Haifawi
jhaifawi@...
May 14, 2001 2:37 am
... From: Jason Haifawi Date: Monday, 14 May 2001 12:07:00 PM To: batchworld@yahoogroups.com Subject: Batch Files Assognment Hello, just wondering if ytou guys...
804
Michael Marquart
micm@...
May 14, 2001 1:13 pm
It may be doable using NT and the enhanced for in do capabilities, but not easily in Win9x batch. I suggest using Bruce Guthries freeware CHANGE which can...
805
Raz Goren - StarBand ...
raz.goren@...
May 16, 2001 8:02 pm
Hi I need to receive into a log file I'm creating the amount of RAM the PC has . The Mem command doesn't supply this info . Is there a utility that can do it...
806
Rakitin, Jason
jrakitin@...
May 16, 2001 8:06 pm
in NT 4.0 you can use WinMSD /a <filename> to get the info In Win2k its going to be the WinMSD -report <filename> ... From: Raz Goren - StarBand - MCL...
807
Raz Goren - StarBand ...
raz.goren@...
May 16, 2001 8:59 pm
Can I receive only part of the details and not all . I succeeded to receive msinfo32 or winmsd that are really the same but they always create a large log and...
808
Sudeep Chaudhuri
abc5432110023@...
May 16, 2001 9:00 pm
Dear Batch world members, I am calling a windows program ( actually it is amedia player) from within my batch program using a simple command like progname.exe ...
809
Rakitin, Jason
jrakitin@...
May 16, 2001 9:09 pm
you'd probably have to process the output of the large output file and strip out all the stuff you don't need. A simple cut script could probably do that for...
810
Michael Marquart
micm@...
May 17, 2001 1:59 pm
In Win9x you can use mem /c |find /i "total memory">>file.log The last figure is the total RAM....
811
Michael Marquart
micm@...
May 17, 2001 2:06 pm
It appears these messages were addressed to me personally, and my filter placed them with the messages from Batchworld. Apologies if I alarmed anyone...
812
Michael Marquart
micm@...
May 17, 2001 2:07 pm
Warning. The attachment to this message was Humor.TXT.pif and is a windows executable file. McAfee virus scanner reports Found the W32/BadTrans@MM trojan !!! ...
813
Don Oellrich
donoellrich@...
May 17, 2001 6:58 pm
put a PAUSE in the next line after the command which runs the prog ... _________________________________________________________________ Get your FREE download...
814
Michael Marquart
micm@...
May 17, 2001 7:05 pm
... if you use START /W PROGNAME.EXE then your batch should continue after you close the progname.exe window. start /? for more info....
815
Sudeep Chaudhuri
abc5432110023@...
May 17, 2001 7:29 pm
Sorry if i did not explain the problem correctly...I want to automate the closing of the windows program . Now my batch programs waits till the windows program...
816
selby jeremy
selbyj28@...
May 18, 2001 10:01 am
hi, Can anyone tell me how to create a batch file to backup home-directories on the domain.The home-directories are scattered on Workstations and Winnt server...
817
Michael Marquart
micm@...
May 18, 2001 2:00 pm
I assume you are displaying an AVI or something. I suggest you change to a program that will play and then exit. The other option is to check the command line...
818
Michael Marquart
micm@...
May 20, 2001 1:23 pm
I use a command-line win32 program called XXCOPY which is syntactically identical to MS XCOPY but goes far beyond it in terms of ability and functionality. ...