Search the web
Sign In
New User? Sign Up
xxcopy
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 15242 - 15271 of 15829   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15242
Running Windows XP Pro I'm trying to run xxcopy from a bat file that starts a new process. I've tried command lines: start "" /b xxcopy.exe /pb /backup /q3 /zs...
badlife973
Offline Send Email
Feb 1, 2009
3:40 pm
15243
... Xxcopy is a cmdline utility not a windows utility whereas the progress bar is a windows utility that can exist as a separate windows executable. Cmdline...
Garry Deane
garrydeane
Offline Send Email
Feb 2, 2009
11:51 am
15244
... Well thanks. I would have thought though that the XXPBAR process would have some connection with the XXCOPY process (obviously it must) and would ...
badlife973
Offline Send Email
Feb 2, 2009
5:06 pm
15245
I'm running XXCopy on Windows Server 2003 and backing up files on a Window 2000 Server. Awhile back we upgraded XXCopy from version 2.93.1 to 2.96.6. After the...
l1nkd3ad
Offline Send Email
Feb 3, 2009
7:03 am
15246
... It's not a bug but a change to how xxcopy handles shared file access. See http://www.xxcopy.com/xxcopy44.htm for full details. You need to add /SHRW to...
Garry Deane
garrydeane
Offline Send Email
Feb 3, 2009
11:45 am
15247
... Starting with ver 2.96.0 (released on 2007-09-07), we decided that XXCOPY's default file-sharing method be more conservative. It was one of the few...
Kan Yabumoto
tech_xxcopy
Offline Send Email
Feb 3, 2009
12:04 pm
15248
... To be perfectly honest, we really can't figure out exactly how the Start command works, especially with the /PB option. As Garry pointed out, XXCOPY cannot...
Kan Yabumoto
tech_xxcopy
Offline Send Email
Feb 3, 2009
2:02 pm
15249
A few weeks back, I messed around with the Start Command for about 3 hours (not related to XXCOPY). I needed to start a Windows Program called Evernote, after...
Allan Wade
adwlogin
Offline Send Email
Feb 3, 2009
3:55 pm
15250
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the xxcopy group. File : /xxcopy-help.zip...
xxcopy@yahoogroups.com
Send Email
Feb 3, 2009
10:00 pm
15251
... Well thank you all again. I appreciate your replies. I was not so much concerned with the behavior of XXPBAR as it is a non-essential but useful indicator...
badlife973
Offline Send Email
Feb 5, 2009
2:01 am
15252
Our music files are scattered across a few computers.  I would like to gather them onto one. Some files are different versions of the same song by the same...
Bill Archibald
wa1349
Offline Send Email
Feb 9, 2009
1:59 pm
15253
Hi all using a 'Photo Bank' to collect my pictures of my camera. This Photo Bank creates some subdirectories (SD001, SD002 etc.) each time one loads pictures...
oe1mww
Offline Send Email
Feb 9, 2009
2:00 pm
15254
Usually when we are using xxcopy we are either copying one folder or a single drive letter. I need to be able to copy multiple folders within a certain drive...
aochelpdesk
Offline Send Email
Feb 9, 2009
10:02 pm
15255
I want to copy a file from the C:\My Documents directory, but I get the message, diretory does not exist. I used the fosllowing lie in my batch file: ...
jfoleary
Offline Send Email
Feb 10, 2009
6:25 am
15256
... Xxcopy will only accept one source directory so your options are limited to: - create a batch file to run one xxcopy command for each source directory -...
Garry Deane
garrydeane
Offline Send Email
Feb 10, 2009
7:23 am
15257
... You can do this in batch by: 1. recursively processing each directory using the FOR /D command to extract the directory name and date 2. Using FOR /F to...
Garry Deane
garrydeane
Offline Send Email
Feb 10, 2009
7:49 am
15258
... Xxcopy doesn't rename files except in limited circumstances. One of those that does is the /SG option that gathers files from multiple directories into a...
Garry Deane
garrydeane
Offline Send Email
Feb 10, 2009
8:26 am
15259
Thank you Garry, Although, being an xxcopy noob, I do not fully understand exactly how the /sg  option works, it sounds like this is what I want. I can live...
Bill Archibald
wa1349
Offline Send Email
Feb 10, 2009
3:31 pm
15260
... From: "jfoleary" <joleary1@...> To: <xxcopy@yahoogroups.com> Sent: Monday, February 09, 2009 10:25 PM Subject: [xxcopy] problem with C:\My...
Virg
nilmotvj
Offline Send Email
Feb 10, 2009
5:45 pm
15261
... Gary, thanks for your reply. This does not work, because it grabs the date of the directories. The files inside those directories of the external HD should...
oe1mww
Offline Send Email
Feb 10, 2009
7:34 pm
15262
... Gary, an example: (files on external HD) directory: sd001 file name: pic1.jpg file date: 10.2.2009 pic1.jpg should go into directory p:\photo\20090210\ -- ...
oe1mww
Offline Send Email
Feb 10, 2009
7:44 pm
15263
... get ... Try ... as a ... Virg: Turbo Tax is a directory....
jfoleary
Offline Send Email
Feb 10, 2009
8:03 pm
15264
... OK here's a revised version. @echo off setlocal for /d %%a in (E:\*) do call :process "%%a" goto :eof ... set yymmdd= set cmd=xxcopy %1 /ld/zs for /f %%i...
Garry Deane
garrydeane
Offline Send Email
Feb 11, 2009
3:05 am
15265
... Gary and others ;-) ... Thanks for the try. I think that was a version I got stuck a while ago. If you try, you will see that this is still with a bug. It...
oe1mww
Offline Send Email
Feb 11, 2009
6:46 am
15266
... Not a bug so much as I didn't notice that you have files with different dates in some of the sub-directories. OK, a different approach that utilises more...
Garry Deane
garrydeane
Offline Send Email
Feb 11, 2009
8:01 am
15267
... @echo off setlocal set src=E: set dst=C:\photo set "cmd=xxcopy %src% /ld/zs/s^|sort" for /f %%i in ('%cmd%') do call :process %%i goto :eof ... if...
oe1mww
Offline Send Email
Feb 11, 2009
9:57 am
15268
I have a batch file with a few lines and before executing each line this message comes up and requires hitting the keyboard to proceed: "This version of Xxcopy...
Lester Vanhoff
lesv99
Offline Send Email
Feb 11, 2009
5:24 pm
15269
I receive files in a directory E:\Downloads, often in subdirectories. Every other day I want to copy these files complete with the directory-structure to...
Lupercus
lupercusbd
Offline Send Email
Feb 11, 2009
5:43 pm
15270
... You can add /ED1 to preserve 1 level (the top level) of directories. See xxcopy /e/help To see what switch is required to suppress an xxcopy prompt, type ?...
Garry Deane
garrydeane
Offline Send Email
Feb 11, 2009
10:04 pm
15271
... You can't readily turn off the warning. It's easier to get the latest version (v2.97.9) from http://www.xxcopy.com/betatest/ Garry...
Garry Deane
garrydeane
Offline Send Email
Feb 11, 2009
10:38 pm
Messages 15242 - 15271 of 15829   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