Network drive without the network

  • Thread starter Thread starter Teo
  • Start date Start date
T

Teo

Hi! Is there a way I can map a network share, have it for offline access?
The only problem I've seen is that since it's an access DB, it doesn't allow
me to have that content offline.
What could I do to enable this.
I have an access application that access that DB in that particular network
drive. If it's not there the application won't run.
The application can't be configured to run in another way.
Please let me know how can I fix this problem,

Teo
 
Teo said:
Hi! Is there a way I can map a network share, have it for offline access?
The only problem I've seen is that since it's an access DB, it doesn't allow
me to have that content offline.
What could I do to enable this.
I have an access application that access that DB in that particular network
drive. If it's not there the application won't run.
The application can't be configured to run in another way.
Please let me know how can I fix this problem,

Teo

You could do this in your logon script:

@echo off
ping DBServer -n 1 | find /i "bytes=" > nul
if ErrorLevel 1 (subst s: c:\OfflineDB) else (net use s: \\DBServer\DBShare)

If you now make sure that c:\OfflineDB contains the same files as
\\DBServer\DBShare then your program will run regardless of whether
you have a network or not.
 
- If you're on a domain: Ask your network administrator.
- If you're on a stand-alone machine: Create a batch file
under any name in "c:\documents and settings\all users\
start menu\programs\startup".
 

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

Back
Top