'==========================================================================
'
' VBScript Source File --
'
' NAME: desertTheme.vbs
'
' AUTHOR: Mark D. MacLachlan , The Spider's Parlor
' URL: [URL unfurl="true"]http://www.thespidersparlor.com[/URL]
' DATE : 04/22/2003
'
' COMMENT:
'
' This script sets the desktop theme to "Desert"
'===========================================================================
on error resume next
Set WSHShell = Wscript.CreateObject("WScript.Shell")
path = "HKCU\Control Panel\Appearance\"
WSHShell.RegWrite path & "Current", "Desert","REG_SZ"
path = "HKCU\Control Panel\Colors\"
WSHShell.RegWrite path & "ActiveBorder","213 204 187", "REG_SZ"
WSHShell.RegWrite path & "ActiveTitle","0 128 128", "REG_SZ"
WSHShell.RegWrite path & "AppWorkSpace","162 141 104", "REG_SZ"
WSHShell.RegWrite path & "Background","162 141 104", "REG_SZ"
WSHShell.RegWrite path & "ButtonAlternateFace","192 192 192", "REG_SZ"
WSHShell.RegWrite path & "ButtonDkShadow","0 0 0", "REG_SZ"
WSHShell.RegWrite path & "ButtonFace","213 204 187", "REG_SZ"
WSHShell.RegWrite path & "ButtonHilight","234 230 221", "REG_SZ"
WSHShell.RegWrite path & "ButtonLight","213 204 187", "REG_SZ"
WSHShell.RegWrite path & "ButtonShadow","162 141 104", "REG_SZ"
WSHShell.RegWrite path & "GradientActiveTitle","132 189 170", "REG_SZ"
WSHShell.RegWrite path & "GradientInactiveTitle","232 208 128", "REG_SZ"
WSHShell.RegWrite path & "GrayText","162 141 104", "REG_SZ"
WSHShell.RegWrite path & "Hilight","0 128 128", "REG_SZ"
WSHShell.RegWrite path & "HotTrackingColor","0 128 128", "REG_SZ"
WSHShell.RegWrite path & "InactiveBorder","213 204 187", "REG_SZ"
WSHShell.RegWrite path & "InactiveTitle","162 141 104", "REG_SZ"
WSHShell.RegWrite path & "InactiveTitleText","255 255 255", "REG_SZ"
WSHShell.RegWrite path & "InfoWindow","255 255 255", "REG_SZ"
WSHShell.RegWrite path & "Menu","213 204 187", "REG_SZ"
WSHShell.RegWrite path & "Scrollbar","234 230 221", "REG_SZ"
path= "HKCU\Control Panel\Desktop\WindowMetrics"
WSHShell.RegWrite path & "BorderWidth","-15","REG_SZ"
WSHShell.RegWrite path & "IconSpacing","-1125", "REG_SZ"
WSHShell.RegWrite path & "ScrollHeight","-195", "REG_SZ"
WSHShell.RegWrite path & "ScrollWidth","-195", "REG_SZ"
WSHShell.RegWrite path & "Shell Icon Size","32", "REG_SZ"
WSHShell.RegWrite path & "SmCaptionHeight","-225","REG_SZ"
WSHShell.RegWrite path & "SmCaptionWidth","-225","REG_SZ"
path= "HKCU\Control Panel\Desktop\"
WSHShell.RegWrite path & "Wallpaper","","REG_SZ"
path= "HKCU\Software\Microsoft\Internet Explorer\Desktop\Components\"
WSHShell.RegWrite path & "GeneralFlags", "00000000", "REG_DWORD"
path="HKCU\Software\Microsoft\Internet Explorer\Desktop\General"
WSHShell.RegWrite path & "BackupWallpaper","","REG_SZ"
WSHShell.RegWrite path & "Wallpaper","","REG_SZ"
WSHShell.RegWrite path & "WallpaperFileTime","00,00,00,00,00,00,00,00", "REG_BINARY"
WSHShell.RegWrite path & "WallpaperLocalFileTime","00,28,A1,53,C5,FF,FF,FF", "REG_BINARY"
MsgBox"Done"