Link to home
Start Free TrialLog in
Avatar of bojangles714
bojangles714Flag for United States of America

asked on

Home drive showing root share instead of user share

We have user folders setup as \\server\users$\username. There is an H: drive that maps directly to their folder.

So when they login it shows their H drive and when they double click it, it takes them into their folder.

Sometimes when users login though it shows their H drive as the User$ folder instead. Now they click the H drive and it shows all the user folders.

What causes this?
How do we resolve this?
ASKER CERTIFIED SOLUTION
Avatar of jorlando66
jorlando66
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bojangles714

ASKER

It looks fine. It states:


\\server\users$\staff\andersonmr
I forgot to add it only doesn't work every now and then.
Try setting the GPO to make the computers wait on the network at startup.

Computer\Administrative Templates\System\Logon.

Avatar of Steven Carnahan
server = server
share = users$
dir = <username>

Am I correct so far?

If you are running Active Directory you can set this on the Profile page or you can do it in a login script.

net use h: \\server\user$\%username%
Is everyone running the same OS? There were some issues that this would happen when using the profile.
Bojangles, you should use the environment map of %username% (\\server\user$\%username%) in the user profile instead of explicitly mapping the username (\\server\user$\johnhenry). Also check to make sure none of your GPOs are attempting to map drives through a login script.
I think ranmasao12 has the best solution so far and testing this out.
acbrown:      When the profile is created you input %username% and then once created the display changes to reflect the actual username. At least that is what I see in our environment.

Bojangles:     I noticed that there was a change in the mapping: \\server\users$\username vs. \\server\users$\staff\andersonmr (The addition of staff). Is there a difference in how some individuals are set?
you should also allow ADUC to create the %username% share and not create it yourself.

you can also map the drives by login script as suggested or by GPO.  Also the shares can be case sensitive depending on the environment.
jorlando66: %username% variable was used. Did NOT create myself.
and this is intermittent?
monday john does login works?
tuesday doesnt?

Thank You!