Hi Offler,
I'm not sure what makes the option appear...
I have however found the registry entry.
In regedit, go to the following registry key:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AdvancedIf the entry
TaskbarSizeMove does not exist then create a new
DWORD Value.
Make the value
0 (zero) for locked and
ff (in hex) for unlocked.
The only catch is that Explorer has to refresh to pick up the change...
You may need to restart Windows to take effect.
If that does not work, then there must be some updated files involved...
If it does work, then you can automate it with the two following .reg files.
Just copy the text and paste into a text file.
Save the two files as something like
Lock the Taskbar on.reg and
Lock the Taskbar off.reg.
Double-click on one of the files and respond Yes to import then restart Windows
Lock the Taskbar on.reg
CODE
REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"TaskbarSizeMove"=dword:00000000
Lock the Taskbar off.reg
CODE
REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"TaskbarSizeMove"=dword:000000ff