the easy solution is to create a batch file that maps the drive for you. here is a sample, which maps 2 drives:
the first line which contains "* /del /y" deletes all the mappings on the computer.
The next line maps the work folder on the server to your W drive, and sends the Username and password.
The 3rd line maps another drive. The Username/password are no longer needed because you have already passed them.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
net use * /del /y
net use r: \\192.168.0.7\work /username:myUserName MyPassword
net use x: \\192.168.0.7\dictations
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Enjoy
Last edited by gkfahnbulleh; 05/01/2009 7:42 PM.