Registry key deployment...

wnied

Diamond Member
Oct 10, 1999
4,206
0
76
Hey everyone,

I have a medium scale network of about 100 users, and I have a registry key I need to depoy to each of their machines without actually touching them. How would I do this? I'm thinking that I have to use the REGINI.EXE, but Im not sure....

Can anyone help me with this?
~wnied~
 

Wizkid

Platinum Member
Oct 11, 1999
2,728
0
0
Are you running active directory? If so, you might be able to use a group policy. You could also put something in a logon script (vbs):

Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")
WSHShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Personal", "abcdef"


 

wnied

Diamond Member
Oct 10, 1999
4,206
0
76
Wizkid

Yes I am using Active Directory with Win2000 server. I have 100 clients that need a new registry key added to their registry. I want to do this without touching their machines, the registry key is something to do with the auto signature for Outlook 2003, and is a .reg file. How would you command look with this .reg file? (Oulook 2003 autosig.reg)
 

wnied

Diamond Member
Oct 10, 1999
4,206
0
76
Wiz

Contents are as follows...


[HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Options]
"NoAutosigOnCustomForms"=dword:00000001


~wnied~
 

Wizkid

Platinum Member
Oct 11, 1999
2,728
0
0
Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")
WSHShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Options\NoAutosigOnCustomForms",00000001,"REG_DWORD"

This should be 3 lines, stick it in a .vbs file and it should make the change for you.
 

wnied

Diamond Member
Oct 10, 1999
4,206
0
76
Wizkid

Now you also mentioned something about using Active Directory, can this also be pushed out through Microsoft Security Update Server? or what other means could you use for this?

Thanks again for all of your help!
~wnied~
 

Wizkid

Platinum Member
Oct 11, 1999
2,728
0
0

wnied

Diamond Member
Oct 10, 1999
4,206
0
76
Wizkid

Just wanted to say Thanks for the help with the scripts. I used your vbs script and added it as a GPO to the OU the group I needed to administer to was in.

Thanks again!;)
~wnied~