📜 VBScript (WSH)
Check "Align Taskbar Icons Left" Status (VBScript)
Reads the registry value behind the "Align Taskbar Icons Left" tweak to confirm whether it's applied.
CheckTaskbarAlignLeftStatus.vbs
' ============================================================
' CheckTaskbarAlignLeftStatus.vbs
'
' Checks whether "Align Taskbar Icons Left" is currently applied.
'
' Usage: cscript CheckTaskbarAlignLeftStatus.vbs
' ============================================================
Option Explicit
Dim objShell, currentValue
Set objShell = CreateObject("WScript.Shell")
On Error Resume Next
currentValue = objShell.RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarAl")
If Err.Number <> 0 Then
WScript.Echo "'TaskbarAl' is not set (using the Windows default)."
Else
WScript.Echo "Current value of 'TaskbarAl': " & currentValue
End If
On Error Goto 0