Hi Keith,
For Windows XP the colors are set by *.themes files. To change the
active-title-bar color, make a copy of
C:\Windows\Resources\Themes\Windows Classic.theme to for example
new.theme, change some settings in it, delete or change the name in
that file (
[email protected],-2016)
To copy Windows Classic.theme without the name in it use:
------- on 1 line ! ---------
TYPE "C:\Windows\Resources\Themes\Windows Classic.theme" | FIND/I /V
"DisplayName" >C:\Windows\Resources\Themes\new.theme
-----------------------------
Finally activate it with a small VBS which can be made from a bach
file using:
-----------------------------
settheme.vbs echo set shell=createobject("wscript.shell")
start/w settheme.vbs
-----------------------------
Color changes in the registry are not automaticly updated and will
show up after reboot. To do that from a bachfile use:
-----------------------------
$SetColor.reg echo Windows Registry Editor Version 5.00
$SetColor.reg echo [HKEY_CURRENT_USER\Control Panel\Colors]
$SetColor.reg echo "ButtonFace"="172 32 32"
start/w REGEDIT /S $SetColor.reg
-----------------------------
full Windows XP classic color-list:
[HKEY_CURRENT_USER\Control Panel\Colors]
"ActiveBorder"="212 208 200"
"ActiveTitle"="10 36 106"
"AppWorkSpace"="128 128 128"
"Background"="58 110 165"
"ButtonAlternateFace"="181 181 181"
"ButtonDkShadow"="64 64 64"
Rgds,
Raghu Boddu
MS MVP - Win client