Quick Launch toolbar

T

Tom Pennington

Okay, somehow I managed to turn off access to the Quick Launch toolbar, it's
actually gone. How do I go about turning it back on for users with a GPO?
If it helps, they can't access anything on the taskbar.

Tom
 
C

Chriss3

You can use the follow script within a Logon Script within a Group Policy,
or disable the follow policy setting within a Group Policy.

Administrative Templates\Start Menu and Taskbar\Lock the Taskbar

HOW TO: Assign Scripts in Windows 2000:
http://support.microsoft.com/default.aspx?scid=kb;en-us;322241

Script Code:


HKEY_CURRENT_USER = &H80000001
strComputer = "."
Set objReg = GetObject("winmgmts:\\" & strComputer &
"\root\default:StdRegProv")
strKeyPath = "Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
objReg.CreateKey HKEY_CURRENT_USER, strKeyPath
ValueName = "TaskBarSizeMove"
dwValue = 1
objReg.SetDWORDValue HKEY_CURRENT_USER, strKeyPath, ValueName, dwValue
 

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

Top