Skip to search.
batchworld · Batch World

Group Information

  • Members: 1062
  • Founded: Mar 5, 2000
  • Language: English
? 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.

Messages

  Messages Help
Advanced
Messages 4661 - 4690 of 8697   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4661 John Zeman
john041650 Offline Send Email
Apr 1, 2004
6:37 pm
... Garry by any chance did you mean a multi command line instead of a multi-line command? If not, I didn't follow you this time, and knowing you and your...
4662 Morris, Lamar
lamarmorrist... Offline Send Email
Apr 1, 2004
6:53 pm
What I need to do is synchronize some directories between an NT2K server and an FTP (Linux) server. Dir names Top Level Directories ACD Subdirectories in ACD ...
4663 Garry Deane
garrydeane Offline Send Email
Apr 2, 2004
12:20 am
... <snip> Yes you're correct. I should have said multiple command line. I tend to (incorrectly) think of them interchangeably since grouping multiple commands...
4664 Anthony Abraham
anthony_abra... Offline Send Email
Apr 5, 2004
1:17 am
Hi I need to create a batch job that copies selected extensions/folders from the local C: Drive to a network folder. I have created the relevant DOS Network...
4665 Michael Marquart
foxidrive Offline Send Email
Apr 5, 2004
3:50 am
... This isn't tested, and it isn't something I normally do, but there should be the beginnings of something workable here. It's meant to be run on the mapped...
4666 Anthony Abraham
anthony_abra... Offline Send Email
Apr 5, 2004
5:48 am
Hi Michael That appears to work fine and is exactly what I need. However if I launch this from a mapped network drive, it collects the files from the network ...
4667 Anthony Abraham
anthony_abra... Offline Send Email
Apr 5, 2004
6:11 am
Michael I think I jumped the gun... The code that copies the favorites location isn't working. I get the following error "The system cannot find the file ...
4668 Michael Marquart
foxidrive Offline Send Email
Apr 5, 2004
8:43 am
On stardate Mon, 5 Apr 2004 16:07:41 +1000, Captain Anthony Abraham spake ... I pass on this one - woolly head syndrome. If noone else has ideas then I think...
4669 Derek Byrne
theodorik2003 Offline Send Email
Apr 5, 2004
8:46 am
Hi Anthony, Here's a snippet of code that has been tested and works fine under Windows 2000. I will presume that it will work under NT4 (just change the ...
4670 Michael Marquart
foxidrive Offline Send Email
Apr 5, 2004
9:32 am
... I gave it one more try - and it seems to do the job. This reads a list of server\share from a text file, and uses UNC paths to copy the data, also reading...
4671 kcmjr@...
kcmjr Offline Send Email
Apr 5, 2004
3:22 pm
I see a number of people have already replied with solutions so I'll just add this. The actual files that comprise the links in the Favorites folder use what...
4672 Anthony Abraham
anthony_abra... Offline Send Email
Apr 6, 2004
11:38 pm
Hi Thanks to all who have replied in regards to my issue with batch files.. I have done a search on batchworld to see what syntax would be required to copy...
4673 Garry Deane
garrydeane Offline Send Email
Apr 7, 2004
3:46 am
... Well you can use that code by extracting the source path from the source file using %%~pa then creating the dest path and copying the file there. for /f...
4674 Michael Marquart
foxidrive Offline Send Email
Apr 7, 2004
5:12 am
On stardate Wed, 07 Apr 2004 03:36:51 -0000, Captain Garry Deane spake ... Much betterer. -- Regards, Michael...
4675 Michael Marquart
foxidrive Offline Send Email
Apr 7, 2004
5:15 am
On stardate Wed, 7 Apr 2004 09:36:24 +1000, Captain Anthony Abraham spake ... Try this. How do you separate different backup sets? @echo off for /f "delims="...
4676 Michael Marquart
foxidrive Offline Send Email
Apr 7, 2004
6:53 am
On stardate Wed, 7 Apr 2004 14:33:08 +1000, Captain Michael Marquart spake ... oops. I meant to use xcopy but didn't change the copy switches as well. -- ...
4677 Anthony Abraham
anthony_abra... Offline Send Email
Apr 7, 2004
8:28 am
Its for a once off backup so Im not looking at retaining more than 1 copy. Ive had success with the following so I shall go with this.... Im yet to test the...
4678 Michael Marquart
foxidrive Offline Send Email
Apr 7, 2004
8:39 am
On stardate Wed, 7 Apr 2004 18:26:09 +1000, Captain Anthony Abraham spake ... I meant how will you separate each of the 500 machines set of data, for when you...
4679 enrique ceballos
canseco_50 Offline Send Email
Apr 7, 2004
6:30 pm
__________________________________ Do you Yahoo!? Yahoo! Small Business $15K Web Design Giveaway http://promotions.yahoo.com/design_giveaway/...
4680 Anthony Abraham
anthony_abra... Offline Send Email
Apr 7, 2004
10:32 pm
Im with you now... Basically what I'll do is use WinPE to boot each workstation. This will allow me to see the users C: Drives (NTFS). I will map a drive in...
4681 Derek Byrne
theodorik2003 Offline Send Email
Apr 15, 2004
10:42 am
Hi Eric, Hope you found a solution to your query, unfortunately I don't know the answer there. I'm having an issue with Windows 2000 and ntbackup. There have...
4682 Derek Byrne
theodorik2003 Offline Send Email
Apr 15, 2004
10:52 am
Hi All, Just a query with regard to lists and a for loop. Is it possible to enter an IF statement into a FOR loop that tells the prog to skip a line in a LIST?...
4683 Michael Marquart
foxidrive Offline Send Email
Apr 15, 2004
11:13 am
On stardate Thu, 15 Apr 2004 11:47:56 +0100, Captain Derek Byrne spake ... There are a few way to deal with it - this is a simple way for NT (possibly W2K+)...
4684 Derek Byrne
theodorik2003 Offline Send Email
Apr 15, 2004
12:00 pm
Cheers for that Michael, Actually found another way (included in the help file, using the eol=;) for /f "eol=; tokens=1* delims=," %%a in (%LISTTSALL%) do ( if...
4685 Michael Marquart
foxidrive Offline Send Email
Apr 15, 2004
12:08 pm
On stardate Thu, 15 Apr 2004 13:02:17 +0100, Captain Derek Byrne spake ... I'm not sure how that achieves the same purpose, just by reading it. ... set /a...
4686 Derek Byrne
theodorik2003 Offline Send Email
Apr 15, 2004
12:36 pm
Cheers again for the arithmetic - didn't realise that the % were not required for arithmetic. I reckon the ; is a normal comment statement for lists and batch...
4687 Dembskey, E. (Evan)
evyn Offline Send Email
Apr 16, 2004
8:50 am
Hi, Is it possible to write a batch file that creates a ODBC link to a SQL Server to run under NT4 WS, and possibly W2000? The Lan support guys are running up...
4688 daumcii Offline Send Email Apr 16, 2004
1:42 pm
Does any one know of a way to print a document to a network printer w/o having to know the server and printer name? I would prefer to simply print to that PC's...
4689 kcmjr@...
kcmjr Offline Send Email
Apr 16, 2004
3:21 pm
I'm not entirely sure how this relates to batch files but basically, no, you can't do that. Each device (or node) on the network must have a unique...
4690 kcmjr@...
kcmjr Offline Send Email
Apr 16, 2004
3:27 pm
ODBC uses a DSN file of some sort to determine what SQL server and instance to connect to. The DSN is simply a text file, easily edited by any number of...
Messages 4661 - 4690 of 8697   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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