Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need to map a drive to win2000 server with novell login 1

Status
Not open for further replies.

dasectec

IS-IT--Management
Jul 3, 2001
32
US
Anyone found a great solution. I have tried with net use cmd. and It did not work properly.
 
You can use the NET USE command but you have to either ensure that the NetWare username and password is synchronised with the Windows 2000 username and password, or you have to get the command to prompt.

The following command will prompt for the password:

NET USE T: \\W2KSERV\SHARE /USER:%USER% *

The %USER% will use the current username (same as NetWare) and the * will force a password prompt.

What errors were you getting?

-----------------------------------------------------
"It's true, its damn true!"
-----------------------------------------------------
 
The cmd did not give error it just did not map.
I have not tried your solution yet. Will try this and see if this works for us.
Thanks for your quick response. I will let you know.
 
ok, I tried this line and did not get a prompt.
I added the # at the beginning of the line and this allowed the prompt to come up. I entered my password and the pop up screen disappeared and then when i checked the mapping the drive was not there.
I am assuming the user variable is the novell login name and not nt 2nd login on workstation?
Another question is it possiable to make a permament name and password for this map so the user does not get this screen? The mapping is to a win2000 server share dir. that is for a database only?
Thanks again!
 
If the database is an SQL database, you should not need a drive mapping, just an SQL connection via the Data Sources option under Control Panel.

To use a standard user account, use the following method (if you are including it in a login script, you will need the preceeding #)

#net use t: \\w2kserv\share /user:dbuser password

where t: is the drive letter, w2kserv is the server name, share is the name of the share, dbuser is your username and password is your password. If you do not want to give the account a password, exclude this from the command.

Best thing is to try the command from a DOS prompt before putting it into the login script (without the #). Then you can check for errors.

-----------------------------------------------------
"It's true, its damn true!"
-----------------------------------------------------
 
Ok, changed the cmd line to include user account and password. Screen flashed durng login and seems it went well.
But the mapping of the drive did not appear in listing of mapped drives. I went to my network places and the win 2000 share folder was there and I selected the folder and was not prompted for login. So Iam assuming that I was authenicated during login but the mapping did not appear.
This almost works. Any other suggestions?
Thanks again your the man!!
 
Thanks, this works great. Really appreciate your help-- the lad.
There is a issue with win 95 but very few of these pc's left in enviroment.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top