Drive Mapping

  • Thread starter Thread starter John
  • Start date Start date
J

John

I have certain "guests" that don't neccessarily log onto
my domain, but need resources from a specific share on my
server. Therefore they have an account within AD just for
that purpose.
My problem is, I have to manually go to their machines in
various locations to map a drive letter (S) to my share.
Is there a way to send them a script of some sort to map
the drive letter for them? I know I can send them the UNC
path, however it won't map the drive letter and will not
be available the next time they log onto their network.
 
Put it in a batch file on their desktop or some such:

NET USE S: /d
NET USE S: \\servername\sharename
 
Back
Top