Windows Server configuration wizard

G

Guest

Hi all,

We are running Win2k Advanced server, it is used as a terminal server, when
the users first login to the server, they always get the Windows Server
configuration wizard pop up. Is there anyway we can stop it to show up for
all users?

Thanks
 
M

MikeVa [MSFT]

You need to set the SRVWIZ value for the default user to 0.
I do this via a cmd script when I setup a W2K server.

---- BEGIN CMDSCRIPT ----
pushd "%SystemDrive%\Documents and Settings\Default User"
attrib NTUSER.DAT -h
reg load HKU\NTUSER NTUSER.dat

reg.exe add "HKU\NTUSER\Software\Microsoft\Windows
NT\CurrentVersion\Setup\Welcome" /v srvwiz /t REG_DWORD /d 0 /f

reg unload HKU\NTUSER
attrib NTUSER.dat +h
popd
---- END CMDSCRIPT ----

Note: for this to work, you will need the W2K version of REG.EXE (in the
ResKit I beleive)

--
MikeVa [MSFT]

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of any included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top