How to copy folders from My Network Places web site shortcut to dr

G

Guest

Hi,

How to copy folders/files from My Network Places from the shortcut of a web
folder
Ex:

I created a shortcut to a web folder and the following copy bat file does
not work.
Copy \\Web\Docs\Project Test\Test.xls D:\Web Data\Test.xls

Thanks in advance,
 
P

Pegasus \(MVP\)

Net said:
Hi,

How to copy folders/files from My Network Places from the shortcut of a web
folder
Ex:

I created a shortcut to a web folder and the following copy bat file does
not work.
Copy \\Web\Docs\Project Test\Test.xls D:\Web Data\Test.xls

Thanks in advance,

Try this:

xcopy /y "\\Web\Docs\Project Test\Test.xls" "D:\Web Data\"
 
P

Pegasus \(MVP\)

My crystal ball has gone a little cloudy and I'm waiting for
a new polishing cloth to be delivered. In the meantime I have
to rely on posters providing a reasonable amount of information
in their posts. "It still did not work" tells me absolutely
nothing. How about posting your line of code, exactly as
it is in your batch file? And the error message you get?
 
G

Guest

When I tried to execute the batch file from the Windows Explorer - MS-DOS
window would just come up but the file was not copied.

I tried to run the batch file from command file and I am getting:
Invalid drive specification

I changed the batch file as you suggested.
xcopy /y "\\Web\Docs\Project Test\Test.xls" "D:\Web Data\"


Net said:
Hi,

How to copy folders/files from My Network Places from the shortcut of a web
folder
Ex:

I created a shortcut to a web folder and the following copy bat file does
not work.
Copy \\Web\Docs\Project Test\Test.xls D:\Web Data\Test.xls

Thanks in advance,

Try this:

xcopy /y "\\Web\Docs\Project Test\Test.xls" "D:\Web Data\"


Thanks in advance,
 
D

Doug Sherman [MVP]

Try:

D:
cd\
cd "Web Data"
xcopy /y "\\Web\Docs\Project Test\Test.xls"

Doug Sherman
MCSE, MCSA, MCP+I, MVP
 

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