| Author |
Message |
Resonate
Guest
|
Posted:
Wed Jan 12, 2005 3:09 am Post subject:
Registry via Group Policy |
|
|
Stupid question.
Is there any way to change Registry settings on all the machines in an OU
for example?
I need to change a registry setting on all domain computers however im not
sure how best to go about it - i dont want to manually touch every machine. |
|
| Back to top |
|
 |
ptwilliams
Guest
|
Posted:
Wed Jan 12, 2005 3:35 am Post subject:
Re: Registry via Group Policy |
|
|
Yes. You need to create a new .adm file and import this into your policy.
Search the web for .adm and administrative templates.
--
Paul Williams
http://www.msresource.net/
http://forums.msresource.net/
"Resonate" <dontspamme@please.com> wrote in message
news:CgXEd.850$9j4.72@newsfe5-gui.ntli.net...
Stupid question.
Is there any way to change Registry settings on all the machines in an OU
for example?
I need to change a registry setting on all domain computers however im not
sure how best to go about it - i dont want to manually touch every machine. |
|
| Back to top |
|
 |
Resonate
Guest
|
Posted:
Wed Jan 12, 2005 3:46 am Post subject:
Re: Registry via Group Policy |
|
|
Thanks paul
if i wanted to add this can you give me a quick guide how to do it?
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\CLSID\{540D8A8B-1C3F-4E32-8132-530F6A502090}]
@="Language bar" "MenuTextPUI"="@%SystemRoot%\\System32\\msutb.dll,-325"
Its to get rid of that sodding language bar when auser logs in.
Cheers
"ptwilliams" <ptw2001@hotmail.com> wrote in message
news:etMAMWC%23EHA.1300@TK2MSFTNGP14.phx.gbl...
| Quote: | Yes. You need to create a new .adm file and import this into your policy.
Search the web for .adm and administrative templates.
--
Paul Williams
http://www.msresource.net/
http://forums.msresource.net/
"Resonate" <dontspamme@please.com> wrote in message
news:CgXEd.850$9j4.72@newsfe5-gui.ntli.net...
Stupid question.
Is there any way to change Registry settings on all the machines in an OU
for example?
I need to change a registry setting on all domain computers however im not
sure how best to go about it - i dont want to manually touch every
machine.
|
|
|
| Back to top |
|
 |
ptwilliams
Guest
|
Posted:
Wed Jan 12, 2005 3:50 am Post subject:
Re: Registry via Group Policy |
|
|
No I can't -it's been ages since I looked at this : (
But here's a couple of links:
-- http://support.microsoft.com/kb/816662
-- http://support.microsoft.com/kb/323639
-- http://www.moskowitz-inc.com/grouppolicy/admdownloads.html
--
Paul Williams
http://www.msresource.net/
http://forums.msresource.net/
"Resonate" <dontspamme@please.com> wrote in message
news:tOXEd.931$9j4.261@newsfe5-gui.ntli.net...
Thanks paul
if i wanted to add this can you give me a quick guide how to do it?
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\CLSID\{540D8A8B-1C3F-4E32-8132-530F6A502090}]
@="Language bar" "MenuTextPUI"="@%SystemRoot%\\System32\\msutb.dll,-325"
Its to get rid of that sodding language bar when auser logs in.
Cheers
"ptwilliams" <ptw2001@hotmail.com> wrote in message
news:etMAMWC%23EHA.1300@TK2MSFTNGP14.phx.gbl...
| Quote: | Yes. You need to create a new .adm file and import this into your policy.
Search the web for .adm and administrative templates.
--
Paul Williams
http://www.msresource.net/
http://forums.msresource.net/
"Resonate" <dontspamme@please.com> wrote in message
news:CgXEd.850$9j4.72@newsfe5-gui.ntli.net...
Stupid question.
Is there any way to change Registry settings on all the machines in an OU
for example?
I need to change a registry setting on all domain computers however im not
sure how best to go about it - i dont want to manually touch every
machine.
|
|
|
| Back to top |
|
 |
Jerold Schulman
Guest
|
Posted:
Wed Jan 12, 2005 3:50 am Post subject:
Re: Registry via Group Policy |
|
|
On Tue, 11 Jan 2005 21:09:54 GMT, "Resonate" <dontspamme@please.com> wrote:
| Quote: | Stupid question.
Is there any way to change Registry settings on all the machines in an OU
for example?
I need to change a registry setting on all domain computers however im not
sure how best to go about it - i dont want to manually touch every machine.
See http://support.microsoft.com?kbid=323639 |
HOW TO: Create Custom Administrative Templates in Windows 2000
or you could run a script from a Windows XP workstation:
@echo off
setlocal
for /f "Tokens=*" %%a in ('dsquery computer "OU=OU_TEST,DC=JSIINC,DC=ORG" -o rdn') do (
call :doit %%a
)
endlocal
goto :EOF
:doit
set computer=%1
set computer=%computer:"=%
@echo %computer%
reg add "\\%computer%\HKLM\Software\somekey1\Somekey2" /V SomeValueName /T REG_DWORD /D 123 /F
@echo.
Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com |
|
| Back to top |
|
 |
|
|
|
|