wensi_peng said:
Hi Lara,
I want to disable it permanently on a few hundred servers. How
can do it by
GPO?
Also, I read Q225087. A .adme supports LOCAL_MACHINE and
CURRENT_USER.
But the value "srvwiz"is in HKUsers. How can I do it
load/unload hive in a
custom .adm file?
Thanks,
Wensi
> > Lara
> >
> > My task is to do HOW TO: Disable the Configure Your
Server Wizard
> > Windows 2000 (Q289080) . Please tell me how to do
load/unload hive
http://www.WindowsForumz.com/Group-Policy-chnage-registry-GPO-ftopict246881.html
abuse:
http://www.WindowsForumz.com/eform.php?p=756618
Hi,
If you are running Windows 2003 you can do it in GPO's like Bruce
said.
I have created an .adm based on the registry key in the Microsoft
Article. As I said, I haven't had much luck with registry hacks.
However, you can try it. Load it under Group Policy as a test User.
It will have to be on the users accounts.
CLASS USER
CATEGORY !!ServerWzd
POLICY !!Do_not_display_Configure_Your_Server_wizard
KEYNAME "Software\Microsoft\Windows
NT\CurrentVersion\Setup\Welcome folder"
VALUENAME "srvwiz"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1
END POLICY
END CATEGORY ; ServerWzd
[strings]
ServerWzd="Server Wizard"
Do_not_display_Configure_Your_Server_wizard="Do not display Configure
your Server Wizard at logon"
The other way would be a vbscript that is a logon script. It would
modify the users registry on logon. I find these work way better so
that is what I use. You may have to play around with it depending on
what type of reg entry it is.
Dim Path
Path = "HKEY_CURRENT_USER\Software\Microsoft\Windows
NT\CurrentVersion\Setup\Welcome folder\"
set ws = WScript.CreateObject("WScript.Shell")
o=ws.RegWrite(Path & "srvwiz", "0", "REG_DWORD")
v=ws.RegRead(Path & "srvwiz")
Set WSHShell = nothing
Cheers,
Lara