Net Use Command

  • Thread starter Thread starter Robert Perkins
  • Start date Start date
R

Robert Perkins

I am trying to use the NET USE
command within a batch file to map to a Windows 2000
server from a Novell login script. The PC's that I am
executing the login script from are all XP & 2000
professional. I have even tried to map a drive from the
command prompt and it didn't work. Is there anything
anyone can tell me about doing this? Any help with this
is appreciated. Thanks in advance!


Robert Perkins
A Fellow Networker
 
Hi Robert,

Try to map from autoexec.bat file from the client machine.

Ex:

net use z: "\\10.116.52.200\repository" /u:user user123

Hth,
 
You need to place a pound sign in front of the net use command in a Novell
login script because it is an external command to Novell login scripts.

# net use i: \\servername\sharename

Cheers.
 
Back
Top