📊 VBA (Excel)
Apply Disable Taskbar Transparency (VBA)
Turns off the translucent taskbar/Start menu effect for a small performance gain. Applied via WScript.Shell.RegWrite from VBA.
DisableTaskbarTransparencyRegSet.bas
Attribute VB_Name = "DisableTaskbarTransparencyRegSet"
Option Explicit
Public Sub DisableTaskbarTransparencyRegSet()
Dim wsh As Object
Dim regPath As String
Set wsh = CreateObject("WScript.Shell")
regPath = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize\EnableTransparency"
wsh.RegWrite regPath, 0, "REG_DWORD"
MsgBox "Disable Taskbar Transparency applied." & vbCrLf & regPath, vbInformation
End Sub