quick launch

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good Morning, I am tryiny to configure XP to launch the "Quick Launch" tool bar in all users profiles. I have not found it in the MMC console, and I have not found an regestry entry. Does anyone know how to do this? Thanks
 
The only way I have found to do this was with a script
that emulates the keyboard commands.

'Quick Launch
Option Explicit

Dim oShell

Set oShell=WScript.CreateObject("WScript.Shell")

oShell.Run("rundll32.exe shell32.dll,Options_RunDLL 1")
WScript.Sleep 100
oShell.AppActivate "Taskbar and Start Menu Properties"
oShell.SendKeys "%Q"
WScript.Sleep 200
oShell.AppActivate "Taskbar and Start Menu Properties"
oShell.Sendkeys"%A"
WScript.Sleep 100
oShell.AppActivate "Taskbar and Start Menu Properties"
oShell.Sendkeys"{ENTER}"
-----Original Message-----
Good Morning, I am tryiny to configure XP to launch
the "Quick Launch" tool bar in all users profiles. I have
not found it in the MMC console, and I have not found an
regestry entry. Does anyone know how to do this? Thanks
 
Back
Top