Skip to content

TaskbarUtil v2026.09.02.1508

Choose a tag to compare

@github-actions github-actions released this 02 Sep 15:15
· 1 commit 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/33647030808. It is provided unsigned — see signing instructions at the bottom.

Full Changelog: v2026.08.28.2245...v2026.09.02.1508

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 a0a20385279a8b95a193713fdaf00865924ad68a.