Posts Tagged Tweaks
Citrix: Terminal Servers and XenApp Tuning Tips
Posted by Lars Krogh in Hints on 15/06/2010
Deploying Terminal Servers? Citrix Servers?
Here are some of the tweaks I use (at deploy time and by using GPO’s):
XP/2003: Customize the Default user profile
Posted by Lars Krogh in Unattended Windows 2003, Unattended Windows XP on 11/08/2009
I use a lot of RegTweaks during base image builds.
Some I have from Kellys Korner – others from MSFN’s Unattended Windows guide
I import the RegTweaks (HKCU.reg, HKLM.reg, HKU.reg, NTUSER.reg and Winlogon.reg (created at runtime)) with this batch:
zCFG-Customize.bat
—code—
copy /Y “%0\..\HKCU.reg” “%SystemDrive%\Documents and Settings\Default User\”
copy /Y “%0\..\HKLM.reg” “%SystemDrive%\Documents and Settings\Default User\”
copy /Y “%0\..\HKU.reg” “%SystemDrive%\Documents and Settings\Default User\”
copy /Y “%0\..\NTUSER.reg” “%SystemDrive%\Documents and Settings\Default User\”
copy /Y “%0\..\XXXXX.bmp” “%WINDIR%\Web\Wallpaper\” & cd “%SystemDrive%\Documents and Settings\Default User\”
echo Windows Registry Editor Version 5.00> .\Winlogon.reg
echo.>> Winlogon.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>> .\Winlogon.reg
echo “LogonPrompt”=”DeployWindows.net: Install date %date%”>> .\Winlogon.reg
echo.>> .\Winlogon.reg
regedit /s .\Winlogon.reg
regedit /s .\HKCU.reg
regedit /s .\HKLM.reg
regedit /s .\HKU.reg
reg load HKLM\TempHive “%SystemDrive%\Documents and Settings\Default User\ntuser.dat”
regedit /s .\NTUSER.reg
reg unload HKLM\TempHive
del /Q .\Winlogon.reg
del /Q .\HKCU.reg
del /Q .\HKLM.reg
del /Q .\NTUSER.reg
del /Q .\HKU.reg
—code—
I place the files in %SCRIPTROOT%\Unattended\XP\
and
%SCRIPTROOT%\Unattended\2003\
