tyrant1969
Programmer
Is it possible to have a VBScript open the properties of the Start Menu, select the "start menu" tab and then select a specific Start Menu visual style (IE XP Start Menu or Classic Start menu)?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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