Snagit 2020 missing from software library

Software library has Snag it 2019, an 2021/22/23/24, but is missing 2020. We’d like to set deployments that auto-update it, however some of our users are still using that version. Any chance we can get this one added?

I created a SnagIt 2020 Powershell script below. I did this for Snagit 2025 and added it to My Software in ImmyBot and deploy it that way.

Snagit Version 20.1.8

Define Variables

$DownloadUrl = “https://download.techsmith.com/snagit/releases/2018/snagit.exe
$InstallerPath = “$env:TEMP\SnagitInstaller.exe”
$LogPath = “$env:TEMP\SnagitInstall.log”
$ProgressPreference=‘SilentlyContinue’

Download Snagit Installer

Write-Output “Downloading Snagit installer…”
Invoke-WebRequest -Uri $DownloadUrl -OutFile $InstallerPath

Check if the download was successful

if (Test-Path $InstallerPath) {
Write-Output “Download successful: $InstallerPath”
} else {
Write-Output “Download failed. Exiting.”
Exit 1
}

Silent Install Snagit

Write-Output “Installing Snagit…”
Start-Process -FilePath $InstallerPath -ArgumentList “/quiet /norestart /log $LogPath” -Wait -NoNewWindow

Check Installation Status

if ($?) {
Write-Output “Installation completed successfully.”
} else {
Write-Output “Installation failed. Check logs at $LogPath.”
Exit 1
}

Cleanup Installer

Write-Output “Cleaning up installer file…”
Remove-Item $InstallerPath -Force

Write-Output “Deployment completed successfully.”
Exit 0