Changing registry key using group policy

  • Thread starter Thread starter sarfaraz
  • Start date Start date
S

sarfaraz

I have installed 53 machine all are in Windows 2000
domain. But by mistake I forgot to change the proxy
settings in real meadia player....

Is it possible to make the changes in tht perticular
registry key from group policy...if it is please guide me
how to go about it.

Thanks
 
Hi,

This is quite easily done through a script that you can assign through Logon
or Startup script, depending on where in the registry you are planning to
write. Here is a quick sample of how to write to the registry. Edit->copy to
notepad->save with a .VBS extension-> apply to group policy

'**SCRIPT START
Dim oShell
Set oShell=CreateObject("wscript.shell")
oShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet
Explorer\Version","1.0","REG_SZ"
'**SCRIPT END

Good luck

Niclas Lindblom
 
Back
Top