So I have made some progress with this using AutoHotKey and creating 2 scripts.
For moving the taskbar icons to the left
Code: vbscript
- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- RegWrite, REG_SZ, HKEY_CURRENT_USER\SOFTWARE\Stardock\Start8\Start8.ini\Start8, CentreStartButton, 0
- RegWrite, REG_SZ, HKEY_CURRENT_USER\SOFTWARE\Stardock\Start8\Start8.ini\Start8, CentreTaskbarButtons, 0
- Return
For moving the taskbar icons to the center
Code: vbscript
- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- RegWrite, REG_SZ, HKEY_CURRENT_USER\SOFTWARE\Stardock\Start8\Start8.ini\Start8, CentreStartButton, 1
- RegWrite, REG_SZ, HKEY_CURRENT_USER\SOFTWARE\Stardock\Start8\Start8.ini\Start8, CentreTaskbarButtons, 1
- Return
However, when making these registry changes, Start 11 does not dynamically update so I have to do Ctrl-Alt-Del and then hit escape. This is much easier than having to restart Explorer
I wish there was a way to toggle this refresh programmtically.