Outbreaker Posted June 16, 2012 Posted June 16, 2012 (edited) HII found a VBScript to enable the Auto-Hide Taskbar for Windows XP but i can't find out how to modify this script so it will also enable the Quick Launch. Option ExplicitConst HKCU = &H80000001Dim objRegSet objReg = GetObject("winmgmts:{impersonationLevel=impersonate}root\default:StdRegProv")Dim objWMISet objWMI = GetObject("winmgmts:{impersonationLevel=impersonate}root\cimv2") ' Adjust the first bit of the taskbar settingsDim arrVal()objReg.GetBinaryValue HKCU, "Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2", "Settings", arrValarrVal(8) = (arrVal(8) AND &h07) OR &h01objReg.SetBinaryValue HKCU, "Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2", "Settings", arrVal' Restart Explorer for the settings to take effect.Dim objProcess, colProcessesSet colProcesses = objWMI.ExecQuery("Select * from Win32_Process Where Name='explorer.exe'")For Each objProcess In colProcesses objProcess.Terminate()Next Edited June 16, 2012 by Outbreaker
Geej Posted June 18, 2012 Posted June 18, 2012 I remember there is this tool toogleQL.exe which can run from the command line.But it is hard to find this file,even googling it. I found it here (see the link toggleQL.exe in a zip file )
Outbreaker Posted June 18, 2012 Author Posted June 18, 2012 (edited) Thanks, this tool was helpful. Edited June 18, 2012 by Outbreaker
xpclient Posted June 18, 2012 Posted June 18, 2012 ToggleQL works only for XP. I know Vista added an official way to toggle taskbar bands according to http://blogs.msdn.com/b/oldnewthing/archive/2009/02/02/9388941.aspx but Raymond Chen himself doesn't know if it works for Quick Launch or not. Anyone have a script or EXE (that doesn't use SendKeys) to toggle QL on Vista/7/8?
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now