Re: Enable "Show Quick Launch" by Katheryne
Katheryne
Tue Aug 09 08:37:03 CDT 2005
Try this code
-------------------------------------------------
Dim WshShell, N_Shell
' Create WshShell Object
Set WshShell = Wscript.CreateObject("Wscript.shell")
Set N_Shell = CreateObject("Shell.Application")
N_Shell.TrayProperties
Wscript.Sleep 1500
WshShell.SendKeys "%Q" ' Alt+Q = Show quick launch
Wscript.Sleep 500
WshShell.SendKeys "Q" ' Alt+Q = Show Quick Launch
Wscript.Sleep 500
WshShell.SendKeys "A" ' Apply Key
Wscript.Sleep 500
WshShell.SendKeys "{ENTER}" ' Enter to Close Properties
' Tidy up
Set N_Shell = Nothing
WScript.Quit
--------------------------
Regards
Kathy
"Andreas" <Andreas@discussions.microsoft.com> wrote in message
news:847E43A9-543C-4178-A9C1-6AD72255434C@microsoft.com...
>
> Is there any one that have a vbscript to enable ""Show Quick Launch" on
> Windows Xp clients.
>
> /Andreas
>