map network drive

E

Eyal Semo

Hi all
Can I map a network drive from access ?
(specific letter to a specific path)
Thanks, eyal
 
O

Ofer

Hi Eyal
Try and ask in the windows discussion group if there is a command to map a
drive using the Run window, if you do, try and run this command in Access
using the Shell command

x = Shell ("Comand line")
 
S

SusanV

To map a drive from a command prompt or in a batch file:

Net Use X: \\Server\share /y

(X being the drive letter)

To remove the mapping:

Net use X: /DELETE /y


For more info, at a command prompt type net use /?
 
Top