network drive mapper

  • Thread starter Thread starter Samantha Eaton
  • Start date Start date
S

Samantha Eaton

I believe there is a program to do this..

I'd like to be able to map more than the allowed number of network drives. I
have about 20 drives on 15 different servers I need access to on a daily
basis. remapping is driving me crazy! I've searched all sorts of
freeware/shareware sites and the only programs I'm finding do not exist
anymore.

I'm running W2K pro.

thanks!

Sam
(e-mail address removed)
 
Building on Bob's suggestion: Why don't you simply
create a batch file, linked to a desktop icon, that
does all the mapping for you?

@echo off
set /p Server=Please enter server name:
if "%Server%"=="" goto :eof

net use * /d /y
net use E: \\%server%\Share1
net use F: \\%server%\Share2
net use G: \\%server%\Share3
net use H: \\%server%\Share4
 
Back
Top