TaskbarUtil v2026.08.27.1858
·
3 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/33134473699. It is provided unsigned — see signing instructions at the bottom.
What's Changed
- Take environment-specific values from configuration instead of hardcoding them by @rodchristiansen in #1
- Rank Start Menu shortcuts so the primary launcher wins by @rodchristiansen in #2
New Contributors
- @rodchristiansen made their first contribution in #1
Full Changelog: v2026.06.11.1346...v2026.08.27.1858
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 28bbb424865c0d12c9931c7bae2e398dc72c6bb7.