Skip to content

TaskbarUtil v2026.09.02.1051

Latest

Choose a tag to compare

@github-actions github-actions released this 02 Sep 17:53
21ab408

Build info

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

What's Changed

Full Changelog: v2026.09.02.1508...v2026.09.02.1051

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 21ab408a276094f9b4fb8a9098e8c868e32dec66.