Apply registry settings via group policy, server 2003

0

I Windows 7 Workstations, I need to disable a certain Outlook plugin across the entire domain.

I need to change this D-WORD key in the registry:

HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\ProLawMSOfficeAddIn.PlOutlookAddIn\LoadBehavior from a 3 to 2, which will disable it.

I found an article about creating a Group Policy for Server 2008 that was promising, but I can't figure out how to achieve it from Server 2003.

Pushing the change via Login Script is not an option. Thank you.

Michael

Posted 2013-07-05T15:45:16.300

Reputation: 5

http://support.microsoft.com/kb/324739 This looks like the answer you're looking for. – kobaltz – 2013-07-05T15:57:57.950

Answers

0

Why can't you use a login script? That's the easiest way to implement this (it'd be a one-liner):

reg add "HKCU\Software\Microsoft\Office\Outlook\Addins\ProLawMSOfficeAddIn.PlOutlookAddIn" /v LoadBehavior /t REG_DWORD /d 2 /f

What you were seeing for 2008 was probably referring to the registry stuff that's in the Group Policy Preferences (GPP), which is a GP addition in 2008, so that's why it's not visible/available in your 2003 domain controller.

If you have a Windows AD domain, you can use GPP without a 2008 server though, it's just a bit of a pain:

After you implement these settings the older GP tools form 2003 may start throwing weird errors about unexpected entries and such, so just get use to doing all future GP work from a Windows 7 machine with RSAT installed (at least until you get a 2008+ server to work from :) ).

Ƭᴇcʜιᴇ007

Posted 2013-07-05T15:45:16.300

Reputation: 103 763

I went a head and added it to the log on script. Much easier than trying to write an .adm template – Michael – 2013-07-10T14:55:24.520

Good to hear. Not sure why you felt you'd have to make a ADM template to pull if off via GPP, but hey, glad it's working. :) – Ƭᴇcʜιᴇ007 – 2013-07-10T16:30:29.970