Mappinf a drive at startup

  • Thread starter Thread starter Scott
  • Start date Start date
S

Scott

I need to map a drive to a network share from a server at
its startup. It must be used by numerous users and be
created without anyone having to logon to the server.
 
You can use;

net use W: /d
net use W: \\servername\sharename
in your shell script in one of the startup directories.
 
Back
Top