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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Quick Access Tool Bar 1
Enable "Quick Launch" 2
Quick launch bar 1
Internet Explorer 7 will not launch 2
Outlook Quick Launch Icon 3
Quick Launch 3
Enable Quick Launch 0
Anyone here with a Steam Controller? 12

Back
Top