Lose connection to mapped drives on reboot

G

Guest

I have a network running XP clients and a Win2K server. When I add a new
computer to the domain, the first time I log on my login script maps drives.
If I reboot the computer and login again I have problems opening 'my
computer' or 'explorer'. It hangs and if it does open I can't open the
mapped drives and get an error that I may not have permission to use that
resource.
If I change the computer back to a workgroup and then add it back
to the domain I can access the drives again but I can't reboot the computer
or I'll lose the connections. Can anyone help? I can't keep removing the
computer from the domain and adding back again every morning.
 
L

Lanwench [MVP - Exchange]

MJG said:
I have a network running XP clients and a Win2K server. When I add a
new computer to the domain, the first time I log on my login script
maps drives. If I reboot the computer and login again I have problems
opening 'my computer' or 'explorer'. It hangs and if it does open I
can't open the mapped drives and get an error that I may not have
permission to use that resource.
If I change the computer back to a workgroup and then add it back
to the domain I can access the drives again but I can't reboot the
computer or I'll lose the connections. Can anyone help? I can't
keep removing the computer from the domain and adding back again
every morning.

Delete any locally mapped drives on all your computers:

net use * /del

In a batch file login script, you could use the following


net use x: \\server\share /persistent:no
net use y: \\server\anothershare /persistent:no
net use u: /home /persistent:no

etc.

And make sure you don't have any drive mappings pointing to unavailable
shares.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top