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

Messages

  Messages Help
Advanced
Messages 8668 - 8697 of 8697   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8668 batchlover93 Offline Send Email Nov 29, 2011
5:08 pm
The original content of the text file i have is only 5 numbers long "17982" and will be always 5 numbers until I reach 100000 And yes the result will be only...
8669 foxidrive
procyon50 Offline Send Email
Nov 30, 2011
1:14 am
This writes to *.bin and reads from *.txt files. @echo off for /f "delims=" %%a in ('dir "*.txt" /a:-d /o:n /b') do ( for /f "delims=" %%b in ('type "%%a"') do...
8670 foxidrive
procyon50 Offline Send Email
Dec 3, 2011
11:27 am
Did it work for you?...
8671 ray_mccormick Offline Send Email Dec 5, 2011
3:28 pm
Project: to manipulate files in a single folder depending on each file's creation date (compare with a cutoff date). I've approached this with dir with...
8672 foxidrive
procyon50 Offline Send Email
Dec 5, 2011
8:02 pm
... You can use the file date and time stamps in %%~ta with delayed expansion @echo off setlocal enabledelayedexpansion set cutoff=20111206 for /f "delims="...
8673 ray_mccormick Offline Send Email Dec 7, 2011
12:02 pm
... Hi Foxidrive I had not even considered that dir /b would contain more information than was displayed. Your script works like a dream when the batch file is...
8674 foxidrive
procyon50 Offline Send Email
Dec 7, 2011
12:19 pm
... add here pushd "D:\0904e\" ... add here popd ... If type FOR /? then on the last page you will see the modifiers using the tilda ~ ... See above for the...
8675 ray_mccormick Offline Send Email Dec 7, 2011
6:12 pm
... Marvellous - after I ran it on the correct computer that had the \0904e\ folder! Now for the easy bit. Pass folder id and number of days (for target date),...
8676 foxidrive
procyon50 Offline Send Email
Dec 11, 2011
11:32 am
Hi Guys 'n Gals. I'm leaving this group because the moderator has left, and left it as a closed group. If anyone needs help for batch files then do feel free...
8677 ray_mccormick Offline Send Email Dec 11, 2011
3:20 pm
... The date extracted is the last modified date. Is there a simple alternative to give the date created? Fortunately, in the present project both should be...
8678 foxidrive
procyon50 Offline Send Email
Dec 11, 2011
3:58 pm
On 12/12/2011 02:20, ray_mccormick wrote: I am watching to see any comments from my penultimate post in this group but will then move on to alt.msdos.batch.nt ...
8679 foxidrive
procyon50 Offline Send Email
Dec 11, 2011
4:38 pm
... This doesn't require the filenames to have a period or a filespec. It's significantly different now as searching the subdirectories when parsing a DIR list...
8680 ray_mccormick Offline Send Email Dec 13, 2011
6:42 pm
... Hi Foxidrive Thank you for the latest offering. The project is almost complete, using the last modified date, and final checking and implementation is...
8681 Aristos Vasiliou
aristos_vasi... Offline Send Email
Dec 14, 2011
1:23 pm
Hi all, I am currently using this in a batch file, to clear useless files from my %WINDIR% set unf=%SystemRoot%\$NtUninstall* for /f "Tokens=*" %%i in ('dir /B...
8682 Alfredo
alfredo_chv Offline Send Email
Dec 16, 2011
9:52 pm
You know? You could get gnu's sort program and use the real thing instead. http://gnuwin32.sourceforge.net/packages/coreutils.htm Cheers ... [Non-text portions...
8683 Bill Z
devilsadvacat Offline Send Email
Dec 16, 2011
9:52 pm
foxidrive: Please ask the current moderator to add you as an additional moderator. One anonymous moderator for this group is bouncing and the other one has...
8684 Alfredo
alfredo_chv Offline Send Email
Dec 16, 2011
9:52 pm
That's a big shame, but thanks for your valuable help and for pointing us to some place we can keep getting help from. Cheers ... [Non-text portions of this...
8685 iwetallted Offline Send Email Dec 16, 2011
9:52 pm
I have a bunch of log files with the following naming scheme: BZRXXXBatch.01042008.log BZRXXXBatch.01042009.log BZRXXXBatch.02042009.log ...
8686 Glenn B. Lawler
incode1 Offline Send Email
Dec 16, 2011
10:27 pm
All the command line ZIP utilities I have used have a syntax to zip a list of files contained in a text file. If you do not have one, look for zip and unzip on...
8687 Aristos Vasiliou
aristos_vasi... Offline Send Email
Dec 21, 2011
3:29 pm
I am using the batch file below, to add 30 domain users to the administrators group of 30 machines. I would really like it though if I could make the batch...
8688 John O'Regan
sponge.belly Offline Send Email
Dec 22, 2011
9:59 pm
Hi Aristos! Try the following. Run the program and make sure the output is correct before deleting ECHO on the second last line. The two commented lines are...
8689 alex
bontyal Offline Send Email
Apr 6, 2012
1:43 pm
Hello all i need help with a batch file i wrote a batch file to download a file from an ftp site rename the file then move it over to a folder, for some reason...
8690 John O'Regan
sponge.belly Offline Send Email
Apr 6, 2012
3:01 pm
Dear Alex, It's difficult to diagnose the problem when I don't know how your particular system is set up. But one or two things leapt out at me. First, I...
8691 John O'Regan
sponge.belly Offline Send Email
Apr 6, 2012
3:10 pm
Hi Again, I found a great link to a page on DosTips.com all about FTP scripts. http://www.dostips.com/DtTipsFtpBatchScript.php It should resolve all your...
8692 kn srivastava
goshainganj Offline Send Email
Apr 7, 2012
7:03 am
Have anyone done backup using 7zip through a batch file? If so, can you share your batch script with me? If not, can you suggest me how I can do backup with...
8693 John O'Regan
sponge.belly Offline Send Email
Apr 7, 2012
2:21 pm
http://www.tedfelix.com/Technology/7zip-backups.html...
8694 kn srivastava
goshainganj Offline Send Email
Apr 7, 2012
6:47 pm
Thank you for the information. I have the following command. 7z a -t7z -mx=9 -mtc=on -v20m -r E:\backup.7z @C:\XXX\sekasri\Documents\cmds\7backup\include.lst...
8695 John O'Regan
sponge.belly Offline Send Email
Apr 7, 2012
10:14 pm
Dear Kailash, Google to the rescue once again... Access Is Denied: http://goo.gl/uMghK Multiple Compressed Folders: http://goo.gl/1i0AW I hope this helps. I...
8696 Michael Burek
mike_burek Offline Send Email
Apr 8, 2012
3:17 am
Is the path for the parameter correct?: @C:\XXX\sekasri Should it be @C:\Users\XXX\sekasri You should only be able to access your own Users folder, and not...
8697 kn srivastava
goshainganj Offline Send Email
Apr 8, 2012
4:00 pm
I finally decided to go with the script at http://chaucer.homeunix.net/pages/posts/7-zip-backup-script-for-windows25.php set...
Messages 8668 - 8697 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