security Level settings in Excel

J

Jules Sainte

I have a client that's using Microsoft Excel 2003 to do programming for his
group, he's encountering the default setting in
Tools--->Macro--->Security--->Security Level. Default is "Medium", when he
sets it to 'Low', it keeps going back to "Medium"??.

We've had issues like this before in our environment (1200+) with users,
doing different manipulations of the product (Excel) for their group (s). How
can we (Desktop Support) make and/or change "Default-Medium"?. I know, this
not the norman for the Mfg/Microsoft, to make changes such as this request if
they haved heard of it before. I thank you in advance.

Much regards,
Jules Sainte/Dsktp Spprt
Siemens IT Solutions
 
H

Halim

I guess thats problem came from the user setting perhaps not administrator
that caused unstable changing in security value.

you can try bypass it by using regedit command:
open this key
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Excel\Security
then change Level value to:
1 --> Low
2 --> Medium
3 --> High
4 --> Very high (Excel 10 and later) CMIIW
 
M

Mark Ivey

If you were interested... here is a version independent VB Script that you
can run to alter these settings:

Option Explicit
Dim objShell, RegLocate, myVersion, objExcel
Set objExcel = CreateObject("Excel.Application")
myVersion = objExcel.Version
Set objShell = WScript.CreateObject("WScript.Shell")
On Error Resume Next
RegLocate = "HKEY_CURRENT_USER\Software\Microsoft\Office\" & myVersion &
"\Excel\Security\Level"
objShell.RegWrite RegLocate,"1","REG_DWORD" ' 1 for LOW, 2 for MEDIUM, 3
for HIGH
objExcel.Quit
WScript.Quit

Also, Jon Peltier had posted some other information on this topic as well.
Here is the information he posted on this topic (see the correspondences
below):

----- Original Message -----
From: "Jon Peltier" <[email protected]>
Newsgroups:
microsoft.public.office.developer.vba,microsoft.public.excel.programming,microsoft.public.excel.misc,microsoft.public.excel
Sent: Sunday, March 04, 2007 9:59 AM
Subject: Re: how to get around the Enable Macro security message?
 

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