Set value for all users on certain machine

  • Thread starter Thread starter Liam
  • Start date Start date
L

Liam

Hi All,
I'm trying to set certain values in the registry for all
users but I keep seeing HKEY_CURRENT_USER as the key to
change the value in. For example if I want to disable the
Configure Your Server popup I need to add the value 0 to

HKEY_CURRENT_USER\Software\Microsoft\Windows
NT\CurrentVersion\Setup\Welcome\srvwiz

I could have a log in script to do this but it would be
better if I could do it for all. Would entering this value
into HKLM or HKey_Users\.DEFAULT be any use?
Thanks,
Liam.
 
Hi All,
I'm trying to set certain values in the registry for all
users but I keep seeing HKEY_CURRENT_USER as the key to
change the value in. For example if I want to disable the
Configure Your Server popup I need to add the value 0 to

HKEY_CURRENT_USER\Software\Microsoft\Windows
NT\CurrentVersion\Setup\Welcome\srvwiz

I could have a log in script to do this but it would be
better if I could do it for all. Would entering this value
into HKLM or HKey_Users\.DEFAULT be any use?
Thanks,
Liam.


See tip 3495 in the 'Tips & Tricks' at http://www.jsiinc.com

HKLM won't work.

If you don't want to add the HKCU setting in a logon script,
you can try ModifyProfilem tip 3970 in the 'Tips & Tricks' at
http://www.jsiinc.com

Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Back
Top