Skip to content

TaskbarUtil v2026.08.28.2245

Choose a tag to compare

@github-actions github-actions released this 29 Aug 05:47
· 2 commits to main since this release

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/33236900422. It is provided unsigned — see signing instructions at the bottom.

What's Changed

  • Prefer the newest release when two generations of an app are installed by @rodchristiansen in #5

Full Changelog: v2026.08.27.1858...v2026.08.28.2245

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 19608ff673bbecdf6a7b7b5cae735481e99b2739.