Skip to content

TaskbarUtil v2026.06.11.1346

Choose a tag to compare

@github-actions github-actions released this 11 Jun 20:51
· 6 commits to main since this release

Build info

This release was built with .NET SDK 10.0.301 on Microsoft Windows Server 2025 Datacenter, via a GitHub Actions workflow here: https://github.com/windowsadmins/taskbarutil/actions/runs/27376369516. It is provided unsigned — see signing instructions at the bottom.

Full Changelog: v2026.04.13.0446...v2026.06.11.1346

Signing for enterprise deployment

Sign the binaries and MSIs with your organization's code signing certificate before distribution:

$cert = "Your Certificate Name"
$timestampUrl = "http://timestamp.digicert.com"

# Sign all binaries (run after extracting any zipped payload)
Get-ChildItem -Recurse -Include *.exe,*.dll | ForEach-Object {
    signtool sign /fd SHA256 /tr $timestampUrl /td SHA256 /n $cert $_.FullName
}

# Sign the MSI installers (run separately, after binaries are signed and repackaged)
Get-ChildItem -Filter "TaskbarUtil-*.msi" | ForEach-Object {
    signtool sign /fd SHA256 /tr $timestampUrl /td SHA256 /n $cert $_.FullName
}

Built from commit 3ff786f0d90e02c27cbf8e9e9f59af96e7ed93c9.