Set security level to Low on the Security Level in Runtime?

  • Thread starter Thread starter Brian
  • Start date Start date
B

Brian

Hello,
Is there any way at all to set the security level to Low on the Security
Level in the Runtime version of 2003?
I have a database with a macro that I want to schedule to automatically run
at night but it sticks waiting for you to click Open.
Thanks
Brian
 
Simply add the following keys to your runtime packing (the package wizard
does have provision for adding regs keys).

ROOT:Local Machine
Key: SOFTWARE\Microsoft\Jet\4.0\Engines
Name:SandBoxMode
Value:#00000002

ROOT:Local Machine
Key: Software\Microsoft\Office\11.0\Access\Security
Name:Level
Value:#00000001


If you add both of the above, then you get no security prompts at all...even
if the later jet sp8 is NOT installed. It is clean...and no prompts....

You could also export the above two keys to a reg file..and then run them on
that target machine to add the above values (would save you having to
re-install the runtime).
 
Back
Top