Question : windows xp mapped drives

I need to know how to setup a batch file to map these drives manually as some users loose their connection to them

here are the drives in my computer

f_drive on 'madhatter'
zebu on 'madhatter'
df on 'madhatter'
jadair on 'madhatter\users'

Answer : windows xp mapped drives

I'm not sure what mappings you currently have, but you can save the text file below to a BAT file,,, maybe name it "drive_map.bat" and you can run it from any machine where the User has access to those folders... the * will assign an unused drive letter so you don't overwrite any existing ones on the user's machine...
1:
2:
3:
4:
5:
@echo off
net use * \\madhatter\f_drive
net use * \\madhatter\zebu
net use * \\madhatter\df
net use * \\madhatter\users\jadair
Open in New Window Select All
Random Solutions  
 
programming4us programming4us