Downloads:
370,888
Downloads of v 12.4.1.20150923:
2,230
Last Update:
22 Sep 2015
Package Maintainer(s):
Software Author(s):
- TechSmith
Tags:
screenshot screen capture- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Snagit
This is not the latest version of Snagit available.
- 1
- 2
- 3
12.4.1.20150923 | Updated: 22 Sep 2015
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
370,888
Downloads of v 12.4.1.20150923:
2,230
Maintainer(s):
Software Author(s):
- TechSmith
Snagit 12.4.1.20150923
This is not the latest version of Snagit available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by TechSmith. The inclusion of TechSmith trademark(s), if any, upon this webpage is solely to identify TechSmith goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Snagit, run the following command from the command line or from PowerShell:
To upgrade Snagit, run the following command from the command line or from PowerShell:
To uninstall Snagit, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download snagit --internalize --version=12.4.1.20150923 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade snagit -y --source="'INTERNAL REPO URL'" --version="'12.4.1.20150923'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade snagit -y --source="'INTERNAL REPO URL'" --version="'12.4.1.20150923'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install snagit
win_chocolatey:
name: snagit
version: '12.4.1.20150923'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'snagit' do
action :install
source 'INTERNAL REPO URL'
version '12.4.1.20150923'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller snagit
{
Name = "snagit"
Version = "12.4.1.20150923"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'snagit':
ensure => '12.4.1.20150923',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator ferventcoder on 28 Dec 2015.
Snagit is a image capture program from TechSmith. It has a variety of capture modes (object, window, area, etc.) as well as video capture. It also features a full-featured capture editing tool.
NOTE: This installs a trial version. You can register it using the following parameter:
- License code:
/licenseCode:"<your license code>"
Example:
-params '/licenseCode:AB1CD-EF2GH-IJ3KL-MN4OP-QR5ST'
function global:ParseParameters ([string]$parameters) {
$arguments = @{};
if ($parameters) {
$match_pattern = "/(((?<name>[a-zA-Z0-9-_]+)[:=]((""(?<value>(?:[^""\\]|\\.)+)"")|(?<value>[^ ]+)))|((?<name>(?>[a-zA-Z0-9-_]+))(?!:)))"
$optionName = 'name'
$valueName = 'value'
if ($parameters -match $match_pattern ){
$results = $parameters | Select-String $match_pattern -AllMatches
$results.matches | % {
$arguments.Add(
$_.Groups[$optionName].Value.Trim(),
$_.Groups[$valueName].Value.Trim())
}
}
else
{
throw "Package Parameters were found but were invalid (REGEX Failure)"
}
}
return $arguments;
}
#
# Query Installed Applications information
#
# Returns information about one or all installed packages that match
# naming pattern. Do it by analyzing registry, so it's not only showing
# Windows Instaler MSI packages.
#
# Usage:
#
# Show-AppUninstallInfo -match "micro" -first $false
#
# Author:
# Colovic Vladan, [email protected]
#
function global:Show-AppUninstallInfo {
param(
[string] $matchPattern = '',
[string] $ignorePattern = '',
[bool] $firstOnly = $false
)
Write-Debug "Querying registry keys for uninstall pattern: $matchPattern"
if ($env:PROCESSOR_ARCHITEW6432 -eq "AMD64") {
# In reality, it's possible, but not worth it...
# How to query 64 bit Registry with 32 bit PowerShell...
#
# http://www.zerosignal.co.uk/2011/12/64-bit-registry-32-bit-powershell/
# http://stackoverflow.com/questions/10533421/accessing-64-bit-registry-from-32-bit-application
# http://poshcode.org/2470
# http://stackoverflow.com/a/8588982/1579985
#
Write-Host ""
Write-Host "CAUTION:" -foregroundcolor red
Write-Host " You are running 32-bit process on a 64-bit operating system," -foregroundcolor red
Write-Host " and in this environment it's not possible to reliably detect" -foregroundcolor red
Write-Host " all installed applications." -foregroundcolor red
Write-Host ""
}
# Any error at this point should be terminating
#
$ErrorActionPreference = "Stop"
# Array of hashes/ Using hash similar to an object to hold our
# application information
#
$appArray = @()
# This is the real magic of the script. We use Get-ChildItem to
# get all of the sub-keys that contain application info.
# Here, we MUST silently ignore errors
#
$ErrorActionPreference = "SilentlyContinue"
$keys = Get-ChildItem "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" -Recurse
$keys += Get-ChildItem "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" -Recurse
$keys += Get-ChildItem "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" -Recurse
$keys += Get-ChildItem "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" -Recurse
# On 64-bit systems, we get very important extra list from the
# Wow6432Node nodes. But now I'm skipping OS detection that we
# used before, as it turned out that it's really not very reliable.
# Build out hash for every matched application
#
foreach ($key in $keys)
{
# Adding a try-catch around the statement will hide the error and
# prevent it being caught in the main try / catch. And we are
# already silnetly continuing on errors
#
try { $pkgName = $key.GetValue("DisplayName") } catch {}
# Only query data for apps with a name
#
if ($pkgName)
{
$pkgName = $pkgName.Trim()
if (($pkgName.Length -eq 0) -or `
($matchPattern -and ($pkgName -notmatch $matchPattern)) -or `
($ignorePattern -and ($pkgName -match $ignorePattern)))
{
# Move on if not match regular expression.
# It's case-insensitive comparison.
#
continue
}
Write-Debug "* $pkgName"
# Ignore every error
#
try {
# Convert estimated size to megabytes
#
$tmpSize = '{0:N2}' -f ($key.GetValue("EstimatedSize") / 1MB)
# Populate our object
# We must initialize object here, not outside loop
#
$app = @{}
$app["DisplayName"] = $pkgName # Name / InnoSetup: yes, MSI: yes
$app["DisplayVersion"] = $key.GetValue("DisplayVersion")
$app["Publisher"] = $key.GetValue("Publisher") # Company / InnoSetup: yes, MSI: yes
$app["InstallLocation"] = $key.GetValue("InstallLocation") # / InnoSetup: yes, MSI: sometimes empty
$app["InstallDate"] = $key.GetValue("InstallDate") # yyyymmdd / InnoSetup: yes, MSI: yes
$app["UninstallString"] = $key.GetValue("UninstallString") # / InnoSetup: yes, MSI: yes
$app["QuietUninstallString"] = $key.GetValue("QuietUninstallString") # / InnoSetup: yes, MSI: no
$app["EstimatedSizeMB"] = $tmpSize # / InnoSetup: yes, MSI: yes
} catch {}
$app["RegistryPath"] = $key.name
$app["RegistryKeyName"] = $key.pschildname
# If it has keys that start with `Inno Setup:`, like `Inno
# Setup: App Path` or `Inno Setup: Selected Tasks`, then we have
# a lot of extra information and know the installer
#
# Inno Setup almost always has `QuietUninstallString` set, which
# is usually normal one appended with ` /SILENT`. And
# you can discover silent installation arguments by analyzing
# keys with `Tasks` and `Components`
#
# Uninstall Registry Key for MSI installer:
# http://msdn.microsoft.com/en-us/library/windows/desktop/aa372105(v=vs.85).aspx
$appArray += $app
if ($matchPattern -and $firstOnly)
{
# If pattern was defined and we want only the first
# result, it means we found our first app. I think we
# can exit now - I don't need multiple list for that.
break
}
}
}
# Reset error action preference
$ErrorActionPreference = "Continue"
return $appArray
}
function global:Get-AppInstallLocation() {
param ([string]$appNameRegex)
$apps = @(Show-AppUninstallInfo -match $appNameRegex)
if ($apps.Length -eq 0)
{
throw "Could not detect a valid installation for $appNameRegex"
}
$app = $apps[0]
$installLocation = $app["InstallLocation"]
if ($installLocation -eq $null) {
throw "Application found, but no install location has been recorded for it."
}
if(-not (Test-Path "$installLocation")) {
throw "Local installation is detected at '$apps', but directories are not accessible or have been removed"
}
return $installLocation
}
function global:Get-FullAppPath ([string]$uninstallName, [string]$relativePath, [string]$executable, [string]$installFolderName) {
function GetInstalledApp ([string]$uninstallName, [string]$relativePath, [string]$executable) {
$apps = @(Show-AppUninstallInfo -match $uninstallName)
$exe = $null
if ($apps.Length -ne 0)
{
$app = $apps[0]
$dir = $app["InstallLocation"]
if ((![string]::IsNullOrEmpty($dir)) -and (Test-Path "$dir")) {
$exe = (Join-Path "$dir" (Join-Path $relativePath $executable))
}
}
return $exe;
}
function FindInAppPaths([string]$executable) {
$path = Get-ChildItem "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths" | Where-Object PSChildName -eq $executable | Select-Object -First 1
if($path -ne $null) {
$fullPath = $path.GetValue("")
if($fullPath -ne $null) {
return (Get-Item ([System.Environment]::ExpandEnvironmentVariables($fullPath))).FullName
}
$directory = $path.GetValue("Path")
if($directory -ne $null) {
return (Join-Path ([System.Environment]::ExpandEnvironmentVariables($directory)) $executable)
}
}
}
function FindInProgramsFolder([string]$programsFolder, [string]$installFolderName, [string]$relativePath, [string]$executable) {
$installDir = Join-Path $programsFolder $installFolderName
if(Test-Path $installDir) {
$fullPath = Join-Path $installDir (Join-Path $relativePath $executable)
if(Test-Path $fullPath) {
return $fullPath
}
}
}
function FindInProgramFiles([string]$installFolderName, [string]$relativePath, [string]$executable) {
$fullPath = FindInProgramsFolder $env:ProgramFiles $installFolderName $relativePath $executable
if(($fullPath -ne $null) -and (Test-Path $fullPath)) {
return $fullPath
}
$fullPath = FindInProgramsFolder ${env:ProgramFiles(x86)} $installFolderName $relativePath $executable
if(($fullPath -ne $null) -and (Test-Path $fullPath)) {
return $fullPath
}
}
$exe = $null
if($exe -eq $null) {
if($PSBoundParameters.ContainsKey('uninstallName') -and $PSBoundParameters.ContainsKey('relativePath') -and $PSBoundParameters.ContainsKey('executable')) {
$exe = GetInstalledApp $uninstallName $relativePath $executable
}
}
if($exe -eq $null) {
if($PSBoundParameters.ContainsKey('installFolderName') -and $PSBoundParameters.ContainsKey('relativePath') -and $PSBoundParameters.ContainsKey('executable')) {
$exe = FindInProgramFiles $installFolderName $relativePath $executable
}
}
if($exe -eq $null) {
try {
$exe = (Get-Command $executable -ErrorAction SilentlyContinue).Definition;
}
catch {
}
}
if($exe -eq $null) {
$exe = FindInAppPaths $executable
}
if($exe -eq $null) {
throw "Unable to find $executable"
}
return $exe
}
# From: https://social.technet.microsoft.com/forums/windowsserver/en-US/f98802d4-ba8d-4251-9560-dd1a3ea01c97/generating-an-msi-transform-file-from-powershell
$signature = @'
using System.Text;
using System.Runtime.InteropServices;
using System;
using System.Collections.Generic;
public static class Msi
{
[DllImport("msi.dll", SetLastError = true)]
private static extern uint MsiOpenDatabase(string szDatabasePath, IntPtr phPersist, out IntPtr phDatabase);
[DllImport("msi.dll", CharSet = CharSet.Unicode)]
private static extern uint MsiDatabaseOpenView(IntPtr hDatabase, [MarshalAs(UnmanagedType.LPWStr)] string szQuery, out IntPtr phView);
[DllImport("msi.dll", CharSet = CharSet.Unicode)]
private static extern uint MsiViewFetch(IntPtr hView, out IntPtr hRecord);
[DllImport("msi.dll", CharSet = CharSet.Unicode)]
private static extern uint MsiViewExecute(IntPtr hView, IntPtr hRecord);
[DllImport("msi.dll", CharSet = CharSet.Unicode)]
private static extern uint MsiRecordGetString(IntPtr hRecord, int iField, System.Text.StringBuilder szValueBuf, ref int pcchValueBuf);
[DllImport("msi.dll", CharSet = CharSet.Unicode)]
private static extern uint MsiRecordSetString(IntPtr hRecord, int iField, string szValue);
[DllImport("msi.dll", ExactSpelling = true)]
private static extern IntPtr MsiCreateRecord(uint cParams);
[DllImport("msi.dll", ExactSpelling = true)]
private static extern uint MsiViewModify(IntPtr hView, uint eModifyMode, IntPtr hRecord);
[DllImport("msi.dll", SetLastError = true)]
private static extern uint MsiDatabaseGenerateTransform(IntPtr hDatabase, IntPtr hDatabaseReference, string szTransformFile, uint iReserved1, uint iReserved2);
[DllImport("msi.dll", ExactSpelling = true)]
private static extern uint MsiCloseHandle(IntPtr hAny);
[DllImport("msi.dll")]
private static extern uint MsiCreateTransformSummaryInfo(IntPtr hDatabase, IntPtr hDatabaseReference, string szTransformFile, int iErrorConditions, int iValidation);
private static readonly Dictionary<string,string> replacements = new Dictionary<string,string>();
private static readonly Dictionary<string,string> additions = new Dictionary<string,string>();
private static readonly List<IntPtr> openHandles = new List<IntPtr>();
private static string tempFile = System.IO.Path.GetTempFileName();
public static void ClearReplacements()
{
replacements.Clear();
}
public static void AddReplacement(string key, string value)
{
replacements.Add(key, value);
}
public static void ClearAdditions()
{
additions.Clear();
}
public static void AddAddition(string key, string value)
{
additions.Add(key, value);
}
public static void CreateTransform(string msiPath, string mstPath)
{
IntPtr msiInputHandle;
IntPtr msiAlteredHandle;
IntPtr msiDatabaseView;
IntPtr currentRecord;
uint result;
bool shouldContinue = true;
System.IO.File.Delete(tempFile);
System.IO.File.Copy(msiPath, tempFile);
if ((result = MsiOpenDatabase(msiPath, (IntPtr)0, out msiInputHandle)) != 0)
{
CleanUp("ERROR MsiOpenDatabase " + result);
return;
}
openHandles.Add(msiInputHandle);
if ((result = MsiOpenDatabase(tempFile, (IntPtr)2, out msiAlteredHandle)) != 0)
{
CleanUp("ERROR MsiOpenDatabase " + result);
return;
}
openHandles.Add(msiAlteredHandle);
if ((result = MsiDatabaseOpenView(msiAlteredHandle, "SELECT Property, Value FROM Property", out msiDatabaseView)) != 0)
{
CleanUp("ERROR MsiDatabaseOpenView " + result);
return;
}
openHandles.Add(msiDatabaseView);
if ((result = MsiViewExecute(msiDatabaseView, IntPtr.Zero)) != 0)
{
CleanUp("ERROR MsiViewExecute " + result);
return;
}
while (shouldContinue)
{
result = MsiViewFetch(msiDatabaseView, out currentRecord);
if (result == 259)
{
shouldContinue = false;
}
else if (result == 0)
{
openHandles.Add(currentRecord);
StringBuilder builder = new System.Text.StringBuilder(256);
int count = builder.Capacity;
if ((result = MsiRecordGetString(currentRecord, 1, builder, ref count)) != 0)
{
CleanUp("ERROR MsiRecordGetString " + result);
return;
}
string key = builder.ToString().Trim();
if (replacements.ContainsKey(key))
{
if ((result = MsiRecordSetString(currentRecord, 2, replacements[key])) != 0)
{
CleanUp("ERROR MsiRecordSetString " + result);
return;
}
if ((result = MsiViewModify(msiDatabaseView, 2, currentRecord)) != 0)
{
CleanUp("ERROR MsiViewModify " + result);
return;
}
}
MsiCloseHandle(currentRecord);
openHandles.Remove(currentRecord);
}
else
{
CleanUp("ERROR MsiViewFetch " + result);
return;
}
}
foreach (KeyValuePair<string,string> item in additions)
{
IntPtr newRecord = MsiCreateRecord(2);
openHandles.Add(newRecord);
if ((result = MsiRecordSetString(newRecord, 1, item.Key)) != 0)
{
CleanUp("ERROR MsiRecordSetString " + result);
return;
}
if ((result = MsiRecordSetString(newRecord, 2, item.Value)) != 0)
{
CleanUp("ERROR MsiRecordSetString " + result);
return;
}
if ((result = MsiViewModify(msiDatabaseView, 1, newRecord)) != 0)
{
CleanUp("ERROR MsiViewModify " + result);
return;
}
MsiCloseHandle(newRecord);
openHandles.Remove(newRecord);
}
if ((result = MsiDatabaseGenerateTransform(msiAlteredHandle, msiInputHandle, mstPath, 0, 0)) != 0)
{
CleanUp("ERROR MsiDatabaseGenerateTransform " + result);
return;
}
if ((result = MsiCreateTransformSummaryInfo(msiAlteredHandle, msiInputHandle, mstPath, 0, 0)) != 0)
{
CleanUp("ERROR MsiCreateTransformSummaryInfo " + result);
return;
}
CleanUp("OK Created Transform File " + mstPath);
}
private static void CleanUp(string message)
{
Console.WriteLine(message);
foreach(IntPtr handle in openHandles)
{
MsiCloseHandle(handle);
}
openHandles.Clear();
System.IO.File.Delete(tempFile);
}
}
'@
Add-Type -TypeDefinition $signature
function global:GenerateMST(
[string]$MsiPath,
[string]$MstPath,
$Replacements,
$Additions
)
{
[Msi]::ClearReplacements()
[Msi]::ClearAdditions()
foreach($item in $replacements)
{
[Msi]::AddReplacement($item.Property, $item.Value);
}
foreach($item in $additions)
{
[Msi]::AddAddition($item.Property, $item.Value);
}
[Msi]::CreateTransform($msiPath, $mstPath)
}
Log in or click on link to see number of positives.
- snagit.12.4.1.20150923.nupkg (3eb3dfdf10cd) - ## / 55
- snagit.msi (2eec5261668a) - ## / 54
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Snagit (Install) 2024.3.0 | 907 | Wednesday, November 13, 2024 | Approved | |
Snagit (Install) 2024.2.4 | 2717 | Thursday, September 26, 2024 | Approved | |
Snagit (Install) 2024.2.3 | 769 | Thursday, September 19, 2024 | Approved | |
Snagit (Install) 2024.2.2 | 1487 | Wednesday, August 21, 2024 | Approved | |
Snagit (Install) 2024.2.1 | 893 | Tuesday, August 13, 2024 | Approved | |
Snagit (Install) 2024.2.0 | 787 | Tuesday, August 6, 2024 | Approved | |
Snagit (Install) 2024.1.4 | 2586 | Thursday, June 6, 2024 | Approved | |
Snagit (Install) 2024.1.3 | 2131 | Monday, April 29, 2024 | Approved | |
Snagit (Install) 2024.1.2 | 809 | Thursday, April 25, 2024 | Approved | |
Snagit (Install) 2024.1.1 | 1957 | Tuesday, March 12, 2024 | Approved | |
Snagit (Install) 2024.1.0 | 1138 | Wednesday, March 6, 2024 | Approved | |
Snagit (Install) 2024.0.4 | 3431 | Wednesday, January 3, 2024 | Approved | |
Snagit (Install) 2024.0.3 | 5297 | Wednesday, December 20, 2023 | Approved | |
Snagit (Install) 2024.0.2 | 1386 | Thursday, November 30, 2023 | Approved | |
Snagit (Install) 2024.0.1 | 3039 | Tuesday, October 17, 2023 | Approved | |
Snagit (Install) 2024.0.0 | 1613 | Wednesday, October 4, 2023 | Approved | |
Snagit (Install) 2023.2.2 | 185 | Thursday, December 21, 2023 | Approved | |
Snagit (Install) 2023.2.1 | 2824 | Wednesday, August 30, 2023 | Approved | |
Snagit (Install) 2023.2.0 | 3272 | Wednesday, July 12, 2023 | Approved | |
Snagit (Install) 2023.1.1 | 5804 | Friday, April 7, 2023 | Approved | |
Snagit (Install) 2023.1.0 | 1618 | Tuesday, March 14, 2023 | Approved | |
Snagit (Install) 2023.0.3 | 2391 | Thursday, January 12, 2023 | Approved | |
Snagit (Install) 2023.0.2 | 1316 | Wednesday, December 14, 2022 | Approved | |
Snagit (Install) 2023.0.1 | 1705 | Tuesday, November 8, 2022 | Approved | |
Snagit (Install) 2023.0.0 | 66 | Tuesday, November 22, 2022 | Approved | |
Snagit (Install) 2022.1.4 | 456 | Tuesday, March 7, 2023 | Approved | |
Snagit (Install) 2022.1.3 | 78 | Tuesday, November 22, 2022 | Approved | |
Snagit (Install) 2022.1.2.20221010 | 7716 | Monday, October 10, 2022 | Approved | |
Snagit (Install) 2022.0.2 | 4936 | Tuesday, April 5, 2022 | Approved | |
Snagit (Install) 2021.4.7 | 186 | Monday, January 30, 2023 | Approved | |
Snagit (Install) 2021.4.6 | 49 | Saturday, December 31, 2022 | Approved | |
Snagit (Install) 2021.4.5 | 217 | Monday, April 11, 2022 | Approved | |
Snagit (Install) 2021.4.4 | 46869 | Tuesday, September 28, 2021 | Approved | |
Snagit (Install) 2021.4.3 | 5570 | Wednesday, July 28, 2021 | Approved | |
Snagit (Install) 2021.4.2 | 2075 | Tuesday, June 22, 2021 | Approved | |
Snagit (Install) 2021.4.1 | 1892 | Tuesday, May 25, 2021 | Approved | |
Snagit (Install) 2021.4.0 | 600 | Wednesday, May 19, 2021 | Approved | |
Snagit (Install) 2021.3.1 | 2433 | Friday, April 23, 2021 | Approved | |
Snagit (Install) 2021.3.0 | 818 | Tuesday, April 13, 2021 | Approved | |
Snagit (Install) 2021.2.1 | 1302 | Wednesday, March 17, 2021 | Approved | |
Snagit (Install) 2021.2.0 | 1479 | Tuesday, January 19, 2021 | Approved | |
Snagit (Install) 2021.1.0 | 1275 | Tuesday, December 15, 2020 | Approved | |
Snagit (Install) 2021.0.2 | 821 | Tuesday, November 24, 2020 | Approved | |
Snagit (Install) 2021.0.1 | 916 | Tuesday, November 3, 2020 | Approved | |
Snagit (Install) 2021.0.0 | 815 | Tuesday, October 20, 2020 | Approved | |
Snagit (Install) 2020.1.5 | 974 | Tuesday, October 13, 2020 | Approved | |
Snagit (Install) 2020.1.4 | 2142 | Tuesday, August 4, 2020 | Approved | |
Snagit (Install) 2020.1.3.20200714 | 3744 | Tuesday, July 14, 2020 | Approved | |
Snagit (Install) 2020.1.3 | 1519 | Tuesday, June 16, 2020 | Approved | |
Snagit (Install) 2020.1.2 | 1787 | Tuesday, May 12, 2020 | Approved | |
Snagit (Install) 2020.1.1 | 1419 | Tuesday, March 10, 2020 | Approved | |
Snagit (Install) 2020.1.0 | 1421 | Tuesday, January 7, 2020 | Approved | |
Snagit (Install) 2020.0.3 | 731 | Tuesday, December 10, 2019 | Approved | |
Snagit (Install) 2020.0.2 | 817 | Tuesday, November 19, 2019 | Approved | |
Snagit (Install) 2020.0.1 | 450 | Friday, November 15, 2019 | Approved | |
Snagit (Install) 2019.1.3 | 2123 | Tuesday, July 23, 2019 | Approved | |
Snagit (Install) 2019.1.2 | 988 | Tuesday, June 4, 2019 | Approved | |
Snagit (Install) 2019.1.1 | 1467 | Tuesday, February 19, 2019 | Approved | |
Snagit (Install) 2019.1.0 | 976 | Tuesday, December 11, 2018 | Approved | |
Snagit (Install) 2019.0.1.20181107 | 534 | Wednesday, November 7, 2018 | Approved | |
Snagit 18.1.1 | 11914 | Monday, June 18, 2018 | Approved | |
Snagit 18.1.0 | 971 | Tuesday, March 27, 2018 | Approved | |
Snagit 18.0.0 | 1271 | Wednesday, November 1, 2017 | Approved | |
Snagit 13.1.1 | 2219 | Monday, March 6, 2017 | Approved | |
Snagit 12.4.1.20150923 | 2230 | Tuesday, September 22, 2015 | Approved | |
Snagit 12.4.1 | 894 | Sunday, September 6, 2015 | Approved | |
Snagit 12.3.1 | 956 | Thursday, March 19, 2015 | Approved | |
Snagit 11.4.3 | 653 | Thursday, March 19, 2015 | Approved |
This package version introduces the ability to register SnagIt during the installation. See above.
This package has no dependencies.
Ground Rules:
- This discussion is only about Snagit and the Snagit package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Snagit, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.