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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 15138 - 15167 of 15823   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15138
Hi all, I've been running a simple nightly batch file to backup my entire c:\ drive to my d:\backup directory. Here's the batch file: subst q: d:\backup xxcopy...
John S. Colton
john_s_colton
Offline Send Email
Dec 3, 2008
8:11 pm
15139
I have 1 pdf file that I need to copy 1600 times to the same directory. How could I use xxcopy to do this. I guess I would it need it to name each file with...
maulwars
Offline Send Email
Dec 4, 2008
3:04 pm
15140
Not a direct answer. I have no idea if xxcopy can do this but it could be done with an excel looping macro using NAME. Don Guillett Microsoft MVP Excel ...
Don Guillett
donaldb36
Offline Send Email
Dec 4, 2008
3:06 pm
15141
I hate to be a pain, but since I am no excel expert is there a way you could lead me in the direction on how to get something like this done? If not, I...
maulwars
Offline Send Email
Dec 4, 2008
3:18 pm
15142
Modify to suit and fire from a regular module in excel Sub copypdfs() Dim SourceFile, DestinationFile oldname = "c:\a\lotclosing.pdf" For i = 1 To 3 newname =...
Don Guillett
donaldb36
Offline Send Email
Dec 4, 2008
4:29 pm
15143
... You could also do it with a basic batch file like the following. Note you will need to modify the lines near the beginning of the script to fit your...
John Zeman
john041650
Offline Send Email
Dec 4, 2008
7:31 pm
15144
... /Clone includes the option /KS which copies the source file attributes, including the compression attribute (which is not set on your source drive), so try...
John Zeman
john041650
Offline Send Email
Dec 4, 2008
7:37 pm
15145
Just to clarify something about my last post, the option /K0 is a K and a zero, not the letter O. John...
John Zeman
john041650
Offline Send Email
Dec 4, 2008
7:40 pm
15146
... Thanks for the reply, John. I'll give it a go. Also, in my command, xxcopy c:\ q: /clone /k0 /ff /yy /AS:C is it a problem that I'm not setting the...
John S. Colton
john_s_colton
Offline Send Email
Dec 4, 2008
9:30 pm
15147
... The /AS: group of parameters are "no copy" operations. They are used for setting attributes without copying the files. See xxcopy /a/? You won't be able to...
Garry Deane
garrydeane
Offline Send Email
Dec 4, 2008
10:14 pm
15148
... Dang, that's going to be much MUCH less efficient. Idea: will the xxcopy c:\ q: /clone /k0 /ff /yy command by itself do the job if the target directory...
John S. Colton
john_s_colton
Offline Send Email
Dec 4, 2008
10:27 pm
15149
Hi, some times the error appears again. I tried with the alpha-Version 2.97.6, but no help, the error=40 is still there. So I went back to Version 2.96.2,...
arnim.hoffart
Offline Send Email
Dec 5, 2008
3:25 pm
15150
... the ... specified. ... Any ... I can confirm that xxcopy v.2973 will not install on Win98se, with the same symptoms you have described. Additionally, if...
Steve
steve00000m
Offline Send Email
Dec 5, 2008
4:05 pm
15151
... If anyone's interested, I tested it out, and sure enough! it seemed to work. Just one little /k0 switch was all it took. :-)...
John S. Colton
john_s_colton
Offline Send Email
Dec 5, 2008
4:22 pm
15152
... I finally did. PCMAG has a program called FileTouch 2. It has a command line (ftouch.exe) as well as a GUI interface. I used the command: ftouch /cm * to...
unique_craig
Offline Send Email
Dec 7, 2008
1:29 pm
15153
... @echo off setlocal set src=c:\data\test for /f "tokens=*" %%a in ('dir %src% /ad /s /b') do ( pushd %%a ftouch /cm * popd)...
Garry Deane
garrydeane
Offline Send Email
Dec 8, 2008
4:53 am
15154
I used XXCOPY.EXE long ago to 'image" a running W98 system . I worked ! After a bad crash that left W98 un bootable i simply copied the image into a...
Thomas Scott
kc7cc
Offline Send Email
Dec 8, 2008
1:26 pm
15155
... Thanks for your interest, Steve. I did try v2953 and it did seem to work properly so I didn't go to any previous versions. There seems to be a point...
jhollands18
Offline Send Email
Dec 9, 2008
11:05 pm
15156
I'm trying to understand why I am getting this message. I'm copying the files from one directory to an empty directory. Source files have SFNs of xxxxxx~1,...
unique_craig
Offline Send Email
Dec 11, 2008
1:21 pm
15157
I just updated to the latest version 2.97.3 and now all my cmd files error out at my use of the /PL option which was documented as follows: /PL :: Doubles the...
evildavecanada
Offline Send Email
Dec 12, 2008
1:34 pm
15158
Hi, all: Last week John Colton brought up the subject of the compression bit. Here, I just cite a part of John's first post. <snip> ... ...
Kan Yabumoto
tech_xxcopy
Offline Send Email
Dec 13, 2008
5:43 am
15159
... At one time, we might have experimented such a feature as /PL on an experiment basis. The good news is that we now officially supports the Very Long Path ...
Kan Yabumoto
tech_xxcopy
Offline Send Email
Dec 13, 2008
5:52 am
15160
I just updated my copy of XXCOPY to 2.97.60 and now it won't run my batch file. theis is my repd-h.bat D: CD d:\XXCOPY xxcopy d:\ h:\ /bu/b0/n0/nx0/ck0/VL Exit...
Ron Hossack
rhossack
Offline Send Email
Dec 14, 2008
2:26 am
15161
Is there any decent documentation on how to use DOS DOS Environment Variables in command files? All I can find is the following which was taken from XXcopy.chm...
evildavecanada
Offline Send Email
Dec 14, 2008
8:28 am
15162
... You presumable talk about windows command shell not DOS (which is a subsystem of the command shell)... However, open a command shell window and on the...
Erik Krause
ekrause2003
Offline Send Email
Dec 14, 2008
4:09 pm
15163
... I don't know whether you are asking the right question here as the answer appears to be too obvious but here goes. I'll assume you are using an xxcopy...
Garry Deane
garrydeane
Offline Send Email
Dec 15, 2008
1:29 pm
15164
... When we implemented the new /VL function (due to pressure from corporate customers), we did not anticipate any needs by personal users. So (without much...
Kan Yabumoto
tech_xxcopy
Offline Send Email
Dec 15, 2008
8:39 pm
15165
Here's yet another attempt to answer your question? Open C:\Windows\Help\ntcmds.chm and drill down through Concepts\Automating command line tasks\Using batch...
des4212001
Offline Send Email
Dec 15, 2008
10:44 pm
15166
mkdir longfoldername dir /x fsutil file setshortname longfoldername longfo~1 dir /x echo hi > longfoldername\longfilename.txt fsutil file setshortname...
unique_craig
Offline Send Email
Dec 16, 2008
2:28 am
15167
I've noticed the newest versions not working on Win98 as well. The newest version that has installed properly and worked for me is 2.96.6...
thebluejin
Offline Send Email
Dec 16, 2008
3:08 am
Messages 15138 - 15167 of 15823   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