a simple batch file

samcurry

Screwing with the code...
Staff member
i need a little help.
I havent done this in a ver long time.
I ned a sample batch file coping a file from the server to 2 user desktops.
Help :(
 

samcurry

Screwing with the code...
Staff member
why yes i do

server is
r:\hudletters\*.doc

desktops are
c:\Program Files\CAdmin\Letters\Lease
 

catocom

Well-Known Member
copy r:\hudletters\*.doc //sharedDesktopPath (or desktop map path)

"repeat for desktop 2 path"
 

catocom

Well-Known Member
ok you first have to shared the "Desktop" folder on each of the workstations.

the path should be something like //WS1/desktop, after you share it.

If you look in the network folders in windows explorer, you can see the path
after you share it. What are the 2 paths to the 2 workstation desktops?
 

samcurry

Screwing with the code...
Staff member
ok lets make this easier.
I want to add locally to each station a batch file that copies from the server to the workstation the *.doc fileon the R:\hudletters\*.doc
Sorry i just thought that if we did it in reverse that if someome was using the dc the copy would fail
 

catocom

Well-Known Member
copy r:\hudletters\*.doc c:\Program Files\CAdmin\Letters\Lease
on each station :hairbang:

then you can also put it on a schedule.
That's how I setup a backup on one network.
 

samcurry

Screwing with the code...
Staff member
so iwould it be

@echo off
copy r:\hudletters\*.doc// c:\program Files\CAdmin\letters\lease
EXIT
 

catocom

Well-Known Member
that should work. It will exit anyway though.
unless you use Pause ... so you can see that it copied ok.
 

samcurry

Screwing with the code...
Staff member
Thank u Cat as always your appreciated very much.
Now to talk them into dticking this into the start menu too.
Plus putting it onthe esktop incase a mid day change
 
Top