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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Home folder not mapping to a WIN98 client. 1

Status
Not open for further replies.

chrisg1

IS-IT--Management
Sep 4, 2003
4
US
Trying to set up a new network with 2K server, with mixed clients. The 98 machine seems to log in fine, I can browse to see the home folder, but it does not map to a drive letter that the user can see. I have the user profile set up like this:
Connect H: \\servername\homes$\test98. What are we doing wrong and/or missing?
 
Which folder is shared? is it homes$ or test98? How are you setting the home directory? in the users account settings? or login scripts?

If the test98 directory is the one that's shared, then the syntax would be \\servername\test98
Open a dos prompt (start, run, cmd, enter) and type in net share. This lists all the shared folders on the server.



~ The day I think I know it all, i'm changing careers ~
 
I don't think Windows98 recognizes nested shares like that. You will need to share the folder so the share can be named \\server\share or whatnot.
 
Windows 9x can map drive letter to share not to subdirectories, so in this case you need
Code:
net use  H: \\servername\homes$\
Windows 9x do not use home directory to drive letter mapping from user profile settings, you should use logon script for Win9x users.
Create .bat (not .cmd !!!) file with this
Code:
net use H: /home
Put this script file on NETLOGON share, write script name in 'logon script' field in user properties for appropriate users.
It works for me.
 
Ah, yes, I love the old batch files. Good point. Star time.

Glen A. Johnson
Johnson Computer Consulting
"The best fire does not flare up the soonest."
George Eliot (1819-1880); Englist novelist.

Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
 
Ok, I think we finally got it right this time. Thank you all for your help. Now I have to start a new thread for help on our (ack!) DOS client.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top