Disable Access Security Notice

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JKoyis
    New Member
    • Mar 2007
    • 20

    Disable Access Security Notice

    I'm trying to put a link on a database form, but access keeps throwing a warning message when I click it:

    "A potential security concern has been identified,

    this location may be unsafe."

    The help mentions unchecking an option in the trust center, but the option isn't listed for me. The link points at a directory in a subfolder of the database's folder, which is listed as a trusted site along with its subdirectories.

    Any suggestions?
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    What version of Access are you using?

    One thing you might try is going to Tools - Macro - Security and make sure the option is set to medium.

    Comment

    • mshmyob
      Recognized Expert Contributor
      • Jan 2008
      • 903

      #3
      2 ways of doing it. If you are using Access 2007 :

      Click on the BIG office button in the top left
      Select Access Options
      Select Trust Center
      Select Trust Center Settings
      Select Trusted Locations and add your new trusted location.

      This works if you never change the directory where the fiels are located. But if you are using it on a network and people can install anywhere or if you use the RUNTIME you need to change the registery setting.

      If you want the registery setting change let me know. The registry setting will turn off this message forever no matter what. It is what I use when I distribute an app to end users with the runtime module.

      Just a note that if you distribute with the runtime and you use linked files and people can install wherever they want you will need to implement a feature to allow relinking of the data file(s).

      Originally posted by JKoyis
      I'm trying to put a link on a database form, but access keeps throwing a warning message when I click it:

      "A potential security concern has been identified,

      this location may be unsafe."

      The help mentions unchecking an option in the trust center, but the option isn't listed for me. The link points at a directory in a subfolder of the database's folder, which is listed as a trusted site along with its subdirectories.

      Any suggestions?

      Comment

      • JKoyis
        New Member
        • Mar 2007
        • 20

        #4
        Thanks for the replies, I'm using Access 2007.

        I've got the database root folder listed as a trusted location, with the subdirectories option ticked, but I'm still getting the warning.

        I might have to try the registry method, but ideally I want the database to be portable and installable anywhere.

        I'm worried that users will see the message and not want to access the help pages.

        Comment

        • mshmyob
          Recognized Expert Contributor
          • Jan 2008
          • 903

          #5
          If you use the runtime it will always give you that message no matter what unless you modify the registry.

          Originally posted by JKoyis
          Thanks for the replies, I'm using Access 2007.

          I've got the database root folder listed as a trusted location, with the subdirectories option ticked, but I'm still getting the warning.

          I might have to try the registry method, but ideally I want the database to be portable and installable anywhere.

          I'm worried that users will see the message and not want to access the help pages.

          Comment

          • mshmyob
            Recognized Expert Contributor
            • Jan 2008
            • 903

            #6
            Here is how you disbale it using the registry for Access 2007

            Code:
            REGEDIT4
            
            [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Security]
            "VBAWarnings"=dword:00000001
            Just create a text file put these 3 lines in and save it as anything you want but have an extension of .REG.

            Then just double clik on it and it will modify the registry to get rid of that annoying message.

            Comment

            • JKoyis
              New Member
              • Mar 2007
              • 20

              #7
              Originally posted by mshmyob
              Here is how you disbale it using the registry for Access 2007

              Code:
              REGEDIT4
              
              [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Security]
              "VBAWarnings"=dword:00000001
              Just create a text file put these 3 lines in and save it as anything you want but have an extension of .REG.

              Then just double clik on it and it will modify the registry to get rid of that annoying message.
              I added the code to the registry, but it still gives the warning message, even after restarting Windows.

              Comment

              • mshmyob
                Recognized Expert Contributor
                • Jan 2008
                • 903

                #8
                Are you running XP or Vista?

                Check your registry manually and see if the change took effect.

                Originally posted by JKoyis
                I added the code to the registry, but it still gives the warning message, even after restarting Windows.

                Comment

                • mshmyob
                  Recognized Expert Contributor
                  • Jan 2008
                  • 903

                  #9
                  I just noticed that the code has some spaces in the word Access. This appeared when I added it to theScripts

                  Make sure Access is one word with no spaces.

                  Originally posted by JKoyis
                  I added the code to the registry, but it still gives the warning message, even after restarting Windows.

                  Comment

                  • JKoyis
                    New Member
                    • Mar 2007
                    • 20

                    #10
                    I'm running XP, and the code is in there with no spaces.

                    I have Access installed separately (no other office apps), if that makes a difference.

                    Here's a screenshot from regedit:

                    Comment

                    • mshmyob
                      Recognized Expert Contributor
                      • Jan 2008
                      • 903

                      #11
                      Try this:

                      In Registry Editor, locate the following registry subkey: HKEY_CURRENT_US ER\Software\Mic rosoft\Office\1 2.0\Common


                      1. Click the registry subkey, point to New on the Edit menu, and then click Key.
                      2. Type Security, and then press ENTER to name the key.
                      3. On the Edit menu, point to New, and then click DWORD Value.
                      4. Type DisableHyperlin kWarning, and then press ENTER to name the entry.
                      5. In the right pane, right-click DisableHyperlin kWarning, and then click Modify.
                      6. In the Edit DWORD Value dialog box, click Decimal, and then type 1 under Value data.

                      Note A value of 0 enables the hyperlink warning message. A value of 1 disables the hyperlink warning message.
                      7. Click OK.
                      8. Exit Registry Editor.



                      Originally posted by JKoyis
                      I'm running XP, and the code is in there with no spaces.

                      I have Access installed separately (no other office apps), if that makes a difference.

                      Here's a screenshot from regedit:

                      http://www.oyis.org/screenshotRegedit.png

                      Comment

                      • attagata
                        New Member
                        • Feb 2008
                        • 1

                        #12
                        Thanks MSHMYOB, It works for me.

                        OS. Windows XP (Portuguese/Japanese)
                        ACCESS RUNTIME 2007


                        Adding in windows registry:
                        Code: ( text )
                        REGEDIT4

                        [HKEY_CURRENT_US ER\Software\Mic rosoft\Office\1 2.0\Access\Secu rity]
                        "VBAWarnings"=d word:00000001

                        Thanks a lot.
                        Anderson

                        Comment

                        • mshmyob
                          Recognized Expert Contributor
                          • Jan 2008
                          • 903

                          #13
                          You're welcome........ ..

                          Originally posted by attagata
                          Thanks MSHMYOB, It works for me.

                          OS. Windows XP (Portuguese/Japanese)
                          ACCESS RUNTIME 2007


                          Adding in windows registry:
                          Code: ( text )
                          REGEDIT4

                          [HKEY_CURRENT_US ER\Software\Mic rosoft\Office\1 2.0\Access\Secu rity]
                          "VBAWarnings"=d word:00000001

                          Thanks a lot.
                          Anderson

                          Comment

                          • JKoyis
                            New Member
                            • Mar 2007
                            • 20

                            #14
                            Works for me too, thanks!

                            Comment

                            • Remo Lapenna

                              #15
                              I have win XP SP3. i created the registry file with the 3 lines of code and then double-clicked the file. I received a message saying that the registry was successfully updated. and now my applications running on Access 2007 runtime no longer display the Security Notice dialog box. Thanks for all your help!

                              Comment

                              Working...