Releases: windowsadmins/sbin-installer
Releases · windowsadmins/sbin-installer
sbin-installer 2026.04.08.0855
Binaries and MSI packages are provided unsigned. For enterprise deployment, sign them with your organization's code signing certificate before distribution:
# Extract and sign binaries
Expand-Archive -Path installer-x64.zip -DestinationPath .
signtool sign /fd SHA256 /tr https://timestamp.digicert.com /td SHA256 /n "Your Certificate Name" installer.exe
# Sign MSI packages
signtool sign /fd SHA256 /tr https://timestamp.digicert.com /td SHA256 /n "Your Certificate Name" installer-x64-2026.04.08.0855.msi
signtool sign /fd SHA256 /tr https://timestamp.digicert.com /td SHA256 /n "Your Certificate Name" installer-arm64-2026.04.08.0855.msiWhat's Changed
- Add native MSI installation support via DTF in #1
- Modernize CI: .NET 10, both arches, drop WiX in #2
- Handle both zip and bare exe formats when downloading cimipkg in #3
- Add signing instructions to release body in #4
Full Changelog: https://github.com/windowsadmins/sbin-installer/commits/v2026.04.08.0855