- Local time
- Today, 10:14
- Joined
- Feb 19, 2002
- Messages
- 46,824
You need to set this one to allow a network location:
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations]
"AllowNetworkLocations"=dword:00000001
Here is what a local path looks like: for C:\Data
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations\Location0]
"Path"="C:\\Data\\"
"AllowSubfolders"=dword:00000001
"Description"=""
"Date"="5/30/2011 3:06 AM"
Here is what a UNC path looks like: for \\Pat-pc\pat-pc\data
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations\Location1]
"Path"="\\\\Pat-pc\\pat-pc\\Data\\"
"AllowSubfolders"=dword:00000001
"Description"=""
"Date"="06/28/11 2:06 PM"
This one you should have. Access installs it when it is installed:
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations\Location2]
"Path"="C:\\Program Files (x86)\\Microsoft Office\\Office17\\ACCWIZ\\"
"Description"="Access default location: Wizard Databases"
For the individual locations, you need to supply a unique name. Above you see Location0, Location1, Location2. Doesn't matter what the name is but it must be unique.
Type RegEdit in the search box for windows. It will open the registry. Drill down using the path structure above. 17.0 is my version of office. Yours might be different so change it as necesary. If you have multiple versions in the list, add the keys to the newest version.
To prevent having to constantly add new folders to trust, create a folder pretty high up in the hierarchy and trust it as well as its subfolders and always put your access databases somewhere in that hierarchy. So you need a minimum of three keys
1. to trust folders on the network
2. to trust a high level folder on your C:\ drive
3. to trust a high level folder on your server drive - you could use a mapped drive letter but I prefer to use UNC name for this.
If you name the text file with .rga as the extension, Windows will know it is a registry update and will run the update if you double click it. Sooooooooo be careful to not double click if you want to open it but not run it. Right click and choose Edit.
Your Network Administrator can (and should) do this for you. He can distribute to all the user computers. You just have to give him the keys you need to add.
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations]
"AllowNetworkLocations"=dword:00000001
Here is what a local path looks like: for C:\Data
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations\Location0]
"Path"="C:\\Data\\"
"AllowSubfolders"=dword:00000001
"Description"=""
"Date"="5/30/2011 3:06 AM"
Here is what a UNC path looks like: for \\Pat-pc\pat-pc\data
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations\Location1]
"Path"="\\\\Pat-pc\\pat-pc\\Data\\"
"AllowSubfolders"=dword:00000001
"Description"=""
"Date"="06/28/11 2:06 PM"
This one you should have. Access installs it when it is installed:
Code:Copy to clipboard
[HKEY_CURRENT_USER\Software\Microsoft\Office\17.0\Access\Security\Trusted Locations\Location2]
"Path"="C:\\Program Files (x86)\\Microsoft Office\\Office17\\ACCWIZ\\"
"Description"="Access default location: Wizard Databases"
For the individual locations, you need to supply a unique name. Above you see Location0, Location1, Location2. Doesn't matter what the name is but it must be unique.
Type RegEdit in the search box for windows. It will open the registry. Drill down using the path structure above. 17.0 is my version of office. Yours might be different so change it as necesary. If you have multiple versions in the list, add the keys to the newest version.
To prevent having to constantly add new folders to trust, create a folder pretty high up in the hierarchy and trust it as well as its subfolders and always put your access databases somewhere in that hierarchy. So you need a minimum of three keys
1. to trust folders on the network
2. to trust a high level folder on your C:\ drive
3. to trust a high level folder on your server drive - you could use a mapped drive letter but I prefer to use UNC name for this.
If you name the text file with .rga as the extension, Windows will know it is a registry update and will run the update if you double click it. Sooooooooo be careful to not double click if you want to open it but not run it. Right click and choose Edit.
Your Network Administrator can (and should) do this for you. He can distribute to all the user computers. You just have to give him the keys you need to add.