map network drive

G

Guest

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

Guest

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 /?
 

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