Copy Script

B

Bre-x

Hi,
I need to create a script that will copy some files.

Environment: Windows 2000

The files that I want to copy from are located on a Windows 2000 Advance
Server.

I need to copy them to a windows 2000 machine that is physically link to the
network but it is not part of the domain.

How do i create a script that runs every nigth and open a "connection"
between the 2 computers and copy from the server to the
workstation?

Regards,

Bre-x
 
P

Pegasus \(MVP\)

Use the Task Scheduler to invoke this batch file:

@echo off
xcopy /s /d /y /c "d:\Some Folder" "\\SomeServer\SomeShare\SomeFolder\"

Make sure to create the scheduled task under an account
that has full access rights to the source and the target
folder.
 

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