Cannot copy from mapped drive

G

Guest

Hi

I want to copy a folder from a mapped network drive to the local HDD. (We
use WinXP and W2003 server, all fully patched.)

I thought a little .bat file like the following would work:

copy P:\pigfolder\*.* C:\Pigfolder\*.*

However this just does not seem to work. I thought this would be simple -
and ideas please?

Cheers

Harry
 
R

R. J. Salvi

Log in as Administrator (or an account with Admin's rights) and try:

Start button > Run...and in the box, type (or copy, paste the following):

xcopy P:\pigfolder\*.* C:\Pigfolder\
 
G

Guest

Thanks
This does not work either.
Lewej

R. J. Salvi said:
Log in as Administrator (or an account with Admin's rights) and try:

Start button > Run...and in the box, type (or copy, paste the following):

xcopy P:\pigfolder\*.* C:\Pigfolder\

--
Robert J. Salvi, Ambiance Acoustics
http://www.ambianceacoustics.com
San Diego, CA USA
(858) 485-7514
 
C

Chuck

Hi

I want to copy a folder from a mapped network drive to the local HDD. (We
use WinXP and W2003 server, all fully patched.)

I thought a little .bat file like the following would work:

copy P:\pigfolder\*.* C:\Pigfolder\*.*

However this just does not seem to work. I thought this would be simple -
and ideas please?

Cheers

Harry

Harry,

First try running this command manually, from a command window. What error do
you get? Try using xcopy instead of copy too.

When I do "copy", it objects to copying a file if it doesn't exist in the
destination already. Then I run xcopy, which copies the files for me even if
they aren't there already.
 
G

Guest

Good idea - Thanks Chuck

Chuck said:
Harry,

First try running this command manually, from a command window. What error do
you get? Try using xcopy instead of copy too.

When I do "copy", it objects to copying a file if it doesn't exist in the
destination already. Then I run xcopy, which copies the files for me even if
they aren't there already.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top