Login script help

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
 
K

Kurt

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
 

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