Search the web
Sign In
New User? Sign Up
batchworld · Batch World
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4751 - 4783 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4751
Hi guys, I want to know how many parameters has been passed to a batch file based on that i want validated some conditions i.e if i pass parameters to batch...
batch exe
batch2exe
Offline Send Email
May 4, 2004
2:20 pm
4752
On stardate Tue, 4 May 2004 07:20:06 -0700 (PDT), Captain batch exe spake ... Here's one way. @echo off if [%1]==[] echo parameters = none & goto :EOF if...
Michael Marquart
foxidrive
Offline Send Email
May 4, 2004
2:45 pm
4753
Any Help would be appreciated. Currently the batch file below works the issue is when running, it attempts to do an extra loop. I don't understand why. rem...
gsl61
Offline Send Email
May 5, 2004
12:48 pm
4754
... add GOTO :EOF here. ... -- Regards, Michael...
Michael Marquart
foxidrive
Offline Send Email
May 5, 2004
12:55 pm
4755
WOW thanks for the quick response and I appreciate the help. ... works ... don't...
gsl61
Offline Send Email
May 5, 2004
1:04 pm
4756
It's finishing the For... and falling into ":Deploy" If you add a "goto EOF" after your For loop and before ":Deploy", you should find it'll be good to go ......
Andy Brookfield
andy_brookfield
Online Now Send Email
May 5, 2004
1:05 pm
4757
Hi, Is it possible to change all the files in a folder from read-only to read using a batch file? Regards, Evan ******************** This email and any...
Dembskey, E. (Evan)
evyn
Offline Send Email
May 6, 2004
4:32 pm
4758
There is a native DOS command named ATTRIB. Do a "HELP ATTRIB" at the DOS-prompt and see if that has what you are looking for. "Dembskey, E. (Evan)"...
dennis.p.morgan@...
kd4wyd
Offline Send Email
May 6, 2004
4:54 pm
4759
... to read ... This will set any or all of the RASH attributes as you wish. It requires NT and as always, be aware of any yahoo inserted line breaks (all...
John Zeman
john041650
Offline Send Email
May 6, 2004
6:03 pm
4760
I guess I need a littl more help. This appears to loop through the first time on the second time I receive the following error. Invalid attempt to call batch...
gsl61
Offline Send Email
May 7, 2004
2:59 pm
4761
... try this line, and get rid of the :EOF label. goto :EOF In NT the :EOF is hard coded as the end of file and the : is required....
Michael Marquart
foxidrive
Offline Send Email
May 7, 2004
3:07 pm
4762
... If that has no effect try and break it down into a smaller portion to test the logic, like this. @echo off if exist "c:\temp" ( for /F "delims=" %%i IN...
Michael Marquart
foxidrive
Offline Send Email
May 7, 2004
3:19 pm
4763
It appears that I did not include all the code with this I am doing a for LOOP inside my CALL. Is this possible because this where I receive the error. rem...
gsl61
Offline Send Email
May 7, 2004
3:55 pm
4764
... yeah, that's ok. Some other things needed attention though. Please unwrap your code if possible... - try this snippet. @Echo off if [%1]==[] echo How...
Michael Marquart
foxidrive
Offline Send Email
May 7, 2004
4:13 pm
4765
On stardate Sat, 8 May 2004 02:13:32 +1000, Captain Michael Marquart spake ... Note that I omitted an & before the goto :EOF I trust that you are testing this...
Michael Marquart
foxidrive
Offline Send Email
May 7, 2004
4:41 pm
4766
it appears that it does not like my call to the .CMD file. Is this possible? ... works ... don't...
gsl61
Offline Send Email
May 7, 2004
6:30 pm
4767
So it appears that when I use CALL I need to us it all the time. I used CALL in front of the .cmd every think worked GREAT! Thanks for you help, again. Deeply...
gsl61
Offline Send Email
May 7, 2004
6:32 pm
4769
Hello, I have 2 win2000 servers that access each others data and I have clients who access the data from the internet via our website. I have 1 batch file on...
Lavi
rajaofpool
Offline Send Email
May 14, 2004
8:14 pm
4770
Check out http://www.sysinternals.com/ntw2k/freeware/pstools.shtml . The utility PsService will let you embed it in a batch file and you can start and stop...
dennis.p.morgan@...
kd4wyd
Offline Send Email
May 14, 2004
8:43 pm
4771
I have a batch file that compares, transfers and verifies files from one computer to a server 7 days a week. It runs at 6 pm every night and runs every 30...
onlinefixes
Offline Send Email
May 15, 2004
11:03 am
4774
Hello All, Due to the recent couple of messages coming from people who joined only to post SPAM, I am changing the group's message policy to have new members...
Sam Wallace
guillaumedep
Offline Send Email
May 17, 2004
3:42 pm
4775
Are these kind of messages allowed in this newsgroup? ... From: <angie_a7fqr@...> To: <batchworld@yahoogroups.com> Sent: Saturday, May 15, 2004 11:53 PM ...
João Mavioso
j_mavioso
Offline Send Email
May 17, 2004
3:55 pm
4776
Hello, No, they are not. The message and its sender have been removed from the group. As I mentioned in my last post, I have taken steps to prevent this from...
Sam Wallace
guillaumedep
Offline Send Email
May 17, 2004
4:39 pm
4777
OK If I have batch files with the titles backup, backup1, backup2 etc what I have to add to the end of each file to open the next? Thanks! Gary...
onlinefixes
Offline Send Email
May 19, 2004
12:49 pm
4778
in your backup batch file call the next batch file : @call backup2 and same with backup2.bat, add the following line to call the next batch file : @call...
Derek Byrne
theodorik2003
Offline Send Email
May 19, 2004
12:52 pm
4779
CALL <filename> (Embedded image moved to file: pic10053.gif) onlinefixes <onlinefixes@yaho To: batchworld@yahoogroups.com o.com>...
dennis.p.morgan@...
kd4wyd
Offline Send Email
May 19, 2004
1:01 pm
4780
Hi All, Just wondering if there is a way to make a batch file un-readable. The idea being that I want to create a batch file that no-one can read, but can...
Derek Byrne
theodorik2003
Offline Send Email
May 19, 2004
1:25 pm
4781
There are a number of Batch to Exe utilities (BAT2EXE) "out in the wild". One can't read binary files. Right? "Derek Byrne" <Derek.Byrne@mete To:...
dennis.p.morgan@...
kd4wyd
Offline Send Email
May 19, 2004
1:29 pm
4782
On stardate Wed, 19 May 2004 14:22:43 +0100, Captain Derek Byrne spake ... bat2exe can convert some plain jane MSDOS batch files to executables. -- Regards, ...
Michael Marquart
foxidrive
Offline Send Email
May 19, 2004
1:31 pm
4783
Upon "rename" of a folder in my batch file I will receive "Access Denied" when someone has the folder open. Is there a way to caputure this and echo a more...
gsl61
Offline Send Email
May 19, 2004
1:46 pm
Messages 4751 - 4783 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help