Authentication Script

  • Thread starter Thread starter rcking
  • Start date Start date
R

rcking

I have a few computers that connect to a shared drive on a win 2003
server. I dont have them authenticating on the server but just locally
on the computer as the server just came into the network. Can someone
give me an idea how I can get the shares to automatically showup every
logon without the constent need to put in the user id and password.

I thought of a local login script but I dont know of how I would write
it if you have any idea I would appreciate that,

Thanks very much
 
rcking said:
I have a few computers that connect to a shared drive on a win 2003
server. I dont have them authenticating on the server but just locally
on the computer as the server just came into the network. Can someone
give me an idea how I can get the shares to automatically showup every
logon without the constent need to put in the user id and password.

I thought of a local login script but I dont know of how I would write
it if you have any idea I would appreciate that,

Thanks very much

Place your common logon script into the netlogon share
of your server. Call it "netlogon.bat".
@echo off
net use P: \\YourServer\SomeShare
net use Q: \\YourServer\SomeOtherShare
net use
ping localhost -n 3 > nul

Now place this batch file into the Startup folder of the
"All Users" profile folder of each workstation:
@echo off
call \\YourServer\netlogon\netlogon.bat
 
Back
Top