Help For Windows Schedule (1 Viewer)

danny123

Registered User.
Local time
Today, 14:53
Joined
Jul 21, 2006
Messages
100
Hi
I wanna schedule a windows job which copy a file from one server to another every week.
Can somebody give me any idea about this.
Best
Danny
 

Minkey

Registered User.
Local time
Today, 21:53
Joined
Jul 7, 2004
Messages
661
An easy way is to use a simple batch file (not 100% on syntax) type the code in notepad and save as whatever.bat:

Code:
copy c:\folder\file.xxx s:\folder

Where c:\ is the location on machine A and s:\ is machine B

Then use scheduler to run this whenever you choose Start > Programs > Accessories > System Tools > Scheduled Tasks (follow the wizard)

This is providing your running Windows XP of course ;)
 

danny123

Registered User.
Local time
Today, 14:53
Joined
Jul 21, 2006
Messages
100
Minkey said:
An easy way is to use a simple batch file (not 100% on syntax) type the code in notepad and save as whatever.bat:

Code:
copy c:\folder\file.xxx s:\folder

Where c:\ is the location on machine A and s:\ is machine B

Then use scheduler to run this whenever you choose Start > Programs > Accessories > System Tools > Scheduled Tasks (follow the wizard)

This is providing your running Windows XP of course ;)
Hi
Thanks for the response.
Will it work as i said i wanna copy from one server to second server.
like dont we have to specify server name somewhere.
Best
Danny
 

Minkey

Registered User.
Local time
Today, 21:53
Joined
Jul 7, 2004
Messages
661
Yeh it sould work just change the drive letter to your server names for example:

Code:
copy drive\folder\file.xxx secondserver\drive\folder

and run this on the first server
 

Users who are viewing this thread

Top Bottom