Set Shell = CreateObject("Shell.Application")
Shell.TrayProperties [COLOR=red]'Opens the properties of the Start Button, to the taskbar tab[/color]
Set WshShell = CreateObject("WScript.Shell")
WScript.Sleep 100
WshShell.SendKeys "+{TAB}" [COLOR=red]'Shift Tab to backup to the Taskbar tab[/color]
WScript.Sleep 100
WshShell.SendKeys "{RIGHT}" [COLOR=red]'Change to the Start Menu Tab[/color]
WScript.Sleep 100
WshShell.SendKeys "%S" [COLOR=red]'Alt-S - selects the XP Start Menu[/color]
WshShell.SendKeys "%M" [COLOR=red]'Alt-M - selects the Classic Start Menu (alternate option)[/color]
WScript.Sleep 100
WshShell.SendKeys "%A" [COLOR=red]'Alt-A - applies the settings[/color]
WScript.Sleep 100
WshShell.SendKeys "{ESC}" [COLOR=red]'Closes the window.[/color]
WScript.Sleep 100
Set Shell = Nothing
Set WshShell = Nothing