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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 7208 - 7238 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7208
At 11:31 PM 10/13/2006 +1000, foxidrive Writes ... Greetings Mic, I apologize to you and the group for my delayed responses but I been so busy deleting and...
Bob Bissinnar
bobbissinnar
Offline Send Email
Nov 4, 2006
7:00 pm
7209
... <Yosemite Sam voice> you dog-blasted, ornery, no-account, long-eared varmint! Take that [blam] and that [blam]. (holsters pistol)</Yosemite Sam voice> ... ...
foxidrive
Offline Send Email
Nov 5, 2006
1:55 am
7210
At 12:52 PM 11/5/2006 +1100, foxidrive Writes ... @echo on @echo off rem pause start "" "c:\Program Files\WordWeb\wwnotray.exe" %* ... Learned my lesson a few...
Bob Bissinnar
bobbissinnar
Offline Send Email
Nov 7, 2006
12:39 am
7211
I am trying to copy c:\bar to c:\foo, and I need the bar directory created under the c:\foo when the copy takes place. If c:\bar contains 3 files, a.txt,...
schelske.geo
Offline Send Email
Nov 8, 2006
3:46 pm
7212
... Try this: xcopy c:\somedir \\pstst4s01\d$\d0129_backup\somedir\ /M/S/E/C/F/Y -- Regards, Mic...
foxidrive
Offline Send Email
Nov 8, 2006
10:37 pm
7213
... Unfortunately that doesn't work under XP nor NT4. Yes, it prolly should, but doesn't. At least not on my XP or NT4 right here in front of me. Xcopy looks...
David Maunder
bushy555
Offline Send Email
Nov 9, 2006
1:13 am
7214
I can report that it works for me on XP SP2. I use xcopy all the time without issue. It's not often necessary, but I usually like to include the /H switch. I...
Marc Peterson
marc351
Offline Send Email
Nov 9, 2006
4:58 pm
7215
Hi All. I was trying for a method to find out the path to a running process. Let me clarify: Let us assume that I have 2 instances of apache.exe webserver...
Parag P. Doke
paragpdoke@...
Send Email
Nov 10, 2006
12:36 pm
7216
... Can you add a batchfile to start the apache process, and capture the PID to an environment variable for later use? Without checking I would guess that the...
foxidrive
Offline Send Email
Nov 10, 2006
1:49 pm
7217
Please help me: I want to start 3 programs at once with a batch file, but I don't know how. Could someone write one for me? Thanks in advance, Peter....
petremure
Offline Send Email
Nov 10, 2006
11:13 pm
7218
Hello Peter, You might want to use the & conditional statement to make this go. For example: command_1 & command_2 & command_3 You can find out more by looking...
Sam Wallace
guillaumedep
Offline Send Email
Nov 10, 2006
11:48 pm
7219
Hi Mic ! Many thanks for the reply. Your suggestion sure did work. I noticed that when I started Apache.exe, it created 2 processes with different PIDs that...
Parag P. Doke
paragpdoke@...
Send Email
Nov 11, 2006
9:03 am
7220
Thanks Sam, Even with the & statement, it's no go. I'm on Server2003 workstation and I want to start my mail client, my spam filter and yahoo pops, which...
petremure
Offline Send Email
Nov 13, 2006
11:07 am
7221
... @Echo off start "" "C:\Program Files\FireTrust\MailWasher Pro\MailWasher.exe" start "" "C:\Program Files\YPOPs\ypops.exe" start "" "C:\Program...
foxidrive
Offline Send Email
Nov 13, 2006
1:13 pm
7223
I had to repost to edit the code... 11/04/06 6:15pm Hey Guys! Mic... How's it going? Is there an easier and cleaner way to do this? Basically when I copy a...
gfunk99999
Offline Send Email
Nov 15, 2006
2:38 am
7224
... This is a repost too - not sure if my other comment arrrived. This will keep 10 copies and can be expanded @echo off if exist E:\text10.txt del...
foxidrive
Offline Send Email
Nov 15, 2006
3:27 am
7225
... by ... Much cleaner...;much like an array -- :) I'm going to see if I can pass each line into a variable so I don't have to repeat the code for all 400...
gfunk99999
Offline Send Email
Nov 15, 2006
5:39 am
7226
... E:\ ... See ... Here it is with variables (tested succesfully) Thanks again Mic! Don't ever leave this forum al right... LOL BTW, i'm getting pretty good...
gfunk99999
Offline Send Email
Nov 15, 2006
6:14 am
7227
Mic (and others) I used your script and it worked great for renaming. I have to do the same thing again for a new set of files and was wondering if I can make...
anthony
ant_bear
Offline Send Email
Nov 15, 2006
6:02 pm
7228
... Which script are you using, Anthony? Also - are you processing only one file type, such as PDF? -- Regards, Mic...
foxidrive
Offline Send Email
Nov 16, 2006
1:34 am
7229
... This might be more efficient, if you can filter on the filetype. In the example it looks for *.pdf and is untested: From what I recall the filenames are...
foxidrive
Offline Send Email
Nov 16, 2006
3:23 am
7230
... I noticed an error so am updating the script - still untested: @echo off for /f %%a in ('dir c:\*.pdf /b /s /a:-d') do ( pushd "%%~dpa" for /f "tokens=1,2...
foxidrive
Offline Send Email
Nov 16, 2006
4:04 am
7231
On 16 Nov 2006 at 14:50, foxidrive (foxidrive <batchworld@yahoogroups.com>) commented about Re: [BATCH WORLD] Rename using Excel List: <Snip> Hi Mic, ... It...
Gary Kuznitz
docfxit
Offline Send Email
Nov 16, 2006
6:50 am
7232
... Bingo! You're spot on, coz I checked gmail and my posts are there. Thank you, Gary. I created a gmail filter to forward all mail from me, to my ISP. If it...
foxidrive
Offline Send Email
Nov 16, 2006
7:15 am
7233
... Trying anudder one. -- Regards, Mic...
foxidrive
Offline Send Email
Nov 16, 2006
8:38 am
7234
... Bugger. Thought a gmail filter was just the thing to fix that but although it lets you create one, it is ignored. Back to the old drawing board. -- ...
foxidrive
Offline Send Email
Nov 16, 2006
9:00 am
7235
Mic, you are correct, all the file names are unique throughout the whole of the 'Home' directory. And yes, all the files are PDF. I'll try to test...
anthony
ant_bear
Offline Send Email
Nov 16, 2006
9:20 pm
7236
Mic, From initial testing, all looks good. Thanks a lot. You just saved me a ton of processing time. For my information, can you explain what the caret...
anthony
ant_bear
Offline Send Email
Nov 17, 2006
3:04 pm
7237
Hi Anthony. "<" by itself is a redirection operator. The "^" is the escape character. If cmd received the "<" sign by itself it would attempt to direct the...
Parag P. Doke
paragpdoke@...
Send Email
Nov 17, 2006
4:40 pm
7238
Hi All. I'm not sure if this topic has been covered earlier in this forum (if yes please direct me to the link of the post). Can someone please explain how...
Parag P. Doke
paragpdoke@...
Send Email
Nov 17, 2006
5:21 pm
Messages 7208 - 7238 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