Posts Tagged Tweaks

Citrix: Terminal Servers and XenApp Tuning Tips

citrix-terminal-servers-and-xenapp-tuning-tips

Deploying Terminal Servers? Citrix Servers?

Here are some of the tweaks I use (at deploy time and by using GPO’s):

XenApp OS Tuning
XenApp Tuning
XenApp Client Tuning

, , , ,

No Comments

XP/2003: Customize the Default user profile

xp2003-customize-the-default-user-profile

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\

, ,

No Comments