How to disable "sharedfolderscript" using Group Policy?

P

Peter

In Outlook XP SP3 and afterwards, there is a registry key
"SharedFolderScript" in
HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Outlook\Security to control
the VB script access for shared mailbox. How can I deploy this registry key
by using group policy?
 
S

Sue Mosher [MVP-Outlook]

Create a new .adm file (better than editing the existing one) with that policy included, then add it to the administrative templates in the group policy editor. The contents of the new .adm file could be something like this, but you have to decide where in the hierarchy ("CATEGORY") to put it:

CLASS USER

CATEGORY "Microsoft Outlook 2002"
CATEGORY "Tools | Options..."

POLICY "Disable scripts for shared folders"
KEYNAME Software\Policies\Microsoft\Office\10.0\Outlook\Security
PART "Check to disable scripts for shared folders" CHECKBOX
VALUENAME SharedFolderScript
VALUEON NUMERIC 0 DEFCHECKED
VALUEOFF NUMERIC 1
END PART
END POLICY

END CATEGORY
END CATEGORY
 
P

Peter

Thx Sue!!!

Create a new .adm file (better than editing the existing one) with that
policy included, then add it to the administrative templates in the group
policy editor. The contents of the new .adm file could be something like
this, but you have to decide where in the hierarchy ("CATEGORY") to put it:

CLASS USER

CATEGORY "Microsoft Outlook 2002"
CATEGORY "Tools | Options..."

POLICY "Disable scripts for shared folders"
KEYNAME Software\Policies\Microsoft\Office\10.0\Outlook\Security
PART "Check to disable scripts for shared folders" CHECKBOX
VALUENAME SharedFolderScript
VALUEON NUMERIC 0 DEFCHECKED
VALUEOFF NUMERIC 1
END PART
END POLICY

END CATEGORY
END CATEGORY
 

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