What Im trying to achieve is that when a user logs on a logon script automatically maps their shared drives. I have a W2K3 server with 3 additional drives which I have shared at root level for Everyone and Full Access. I have wrote the following logon script -
net use h: \\neo\D$
net use i: \\neo\E$
net use j: \\neo\G$
(neo) being my server name
Assuming that when a user logs in it will kick this off and map H, I and J at root level. However, despite being shared for everyone, it states the Password is incorrect for whatever user I log on as except for Administrator. Presumeably this is a permission problem, yet doesnt the fact I made the share available to everyone mean there shouldnt be a password issue at all as there would be no authentication?
Also, what I really want to do is map say the MUSIC folder which sits on NEO as the D drive to a drive letter for a user, Im not sure of the syntax for that command though, if anyone knows.
net use h: \\neo\D$
net use i: \\neo\E$
net use j: \\neo\G$
(neo) being my server name
Assuming that when a user logs in it will kick this off and map H, I and J at root level. However, despite being shared for everyone, it states the Password is incorrect for whatever user I log on as except for Administrator. Presumeably this is a permission problem, yet doesnt the fact I made the share available to everyone mean there shouldnt be a password issue at all as there would be no authentication?
Also, what I really want to do is map say the MUSIC folder which sits on NEO as the D drive to a drive letter for a user, Im not sure of the syntax for that command though, if anyone knows.
Comment