Mapping home directory for win98 client on win2K server 
Author Message
 Mapping home directory for win98 client on win2K server

I am trying to map the users home directory when he logs on to the win2K
server network.
I am using net use p: \\myserver\users /home, but I get the error message
'The syntax is incorrect'.
I have tried net use p: \\myserver\%Username% etc but no good.
(Users is a shared folder which has all the users home directories
underneath.)
I also map other drives during this script and they work fine.

I realise this is not really a windows scripting host problem but I have
tried all possible examples of doing this in VBScript for the win98 client
but nothing works. So I am resorting to a good old batch file, but still no
luck

any body got any ideas.

regards
Steve



Mon, 19 Apr 2004 16:57:15 GMT  
 Mapping home directory for win98 client on win2K server
The problem you're having is that there is no username variable on Win9x
systems. You needed to just make the assignment

net use P: /home

Here's the "Things to Verify" list since this is one of the major annoyances
in Win9x networking...
(1) From user manager, go ahead and make sure that each user's home path is
of the form \\myserver\users\\%username%
(2) make certain the home drive letter is "P:"
(3) Make the home directory assignment in the script as:
net use p: /home


Quote:
> I am trying to map the users home directory when he logs on to the win2K
> server network.
> I am using net use p: \\myserver\users /home, but I get the error message
> 'The syntax is incorrect'.
> I have tried net use p: \\myserver\%Username% etc but no good.
> (Users is a shared folder which has all the users home directories
> underneath.)
> I also map other drives during this script and they work fine.

> I realise this is not really a windows scripting host problem but I have
> tried all possible examples of doing this in vbscript for the win98 client
> but nothing works. So I am resorting to a good old batch file, but still
no
> luck

> any body got any ideas.

> regards
> Steve



Mon, 19 Apr 2004 23:32:25 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Get Win2k Home directory with LDAP?

2. mapping home directories

3. WSH mapping of Home Directory

4. Mapping drive to user's home directory

5. Problem mapping to a home directory

6. Windows 98 clients with windows NT home directory

7. Mapping Drives based on Home server in VBScript

8. WSH Home directory server

9. Setting "Terminal Server Home Directory"

10. Login Script for Win2K server and Win95 Clients

11. Query Active Directory for User's Home Directory Path

12. need vb script to change users home directory in on fell swoop (active directory)

 

 
Powered by phpBB® Forum Software