Login script help

  • Thread starter Thread starter Matt
  • Start date Start date
M

Matt

I am new to Windows networking and am playing around with login
scripts. I would like to have a particular file on the PC copied to a
network drive when the PC logs into the domain. Can someone help??

Thanks in advance.

Matt Atkins
 
Just a plain 'ole CMD file shoule do it provided the file is located in the
same path on every computer.
Lots of ways to do it but here's one possibility:

net use x: \\server\share\%computername%
copy c:\the_file x:
net use x: /delete

Or you could have the folder created under the username. There are also a
number of ways to automate folder creation, but you'll have to learn some
scripting.

....kurt
 
Back
Top