Downloads:
56,554
Downloads of v 9.10.2:
774
Last Update:
13 Mar 2018
Package Maintainer(s):
Software Author(s):
- Techsmith
Tags:
camtasia admin video screen recording- Software Specific:
- Software Site
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Camtasia (Install)
This is not the latest version of Camtasia (Install) available.
- 1
- 2
- 3
9.10.2 | Updated: 13 Mar 2018
- Software Specific:
- Software Site
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
56,554
Downloads of v 9.10.2:
774
Maintainer(s):
Software Author(s):
- Techsmith
Camtasia (Install) 9.10.2
This is not the latest version of Camtasia (Install) 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
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Camtasia (Install), run the following command from the command line or from PowerShell:
To upgrade Camtasia (Install), run the following command from the command line or from PowerShell:
To uninstall Camtasia (Install), 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 camtasia --internalize --version=9.10.2 --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 camtasia -y --source="'INTERNAL REPO URL'" --version="'9.10.2'" [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 camtasia -y --source="'INTERNAL REPO URL'" --version="'9.10.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install camtasia
win_chocolatey:
name: camtasia
version: '9.10.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'camtasia' do
action :install
source 'INTERNAL REPO URL'
version '9.10.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller camtasia
{
Name = "camtasia"
Version = "9.10.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'camtasia':
ensure => '9.10.2',
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 as a trusted package on 13 Mar 2018.
Make Amazing Videos with the Camtasia Video Editor.
Camtasia makes video editing surprisingly easy. The drag-and-drop editor and video assets help you complete your videos faster. No video experience needed.
If you need a previous version, download it.
SCREEN RECORDER
Record any part of your screen, down to the pixel.WEBCAM
Webcam lets you add a personal touch to your video.MEDIA
Import images, audio, and video up to 4K resolution.MULTI-TRACK TIMELINE
Build your videos quickly with multiple tracks for images, video, text, and audio.ANNOTATIONS
Arrows, callouts, shapes, and more help you get your point across.TRANSITIONS
Add an intro/outro to the beginning or end of a clip, image, shape, or text.ANIMATIONS
Zoom, pan, or create your own custom motion effects.VOICE NARRATION
A great way to add context to what you’re showing.AUDIO EFFECTS
Add audio effects to recordings, music, or narration to enhance your video.VISUAL EFFECTS
Adjust colors, add a drop shadow, change the clip speed, and more.INTERACTIVITY
Add quizzes to see who is watching your videos, and how much they've viewed.GREEN SCREEN
Put yourself in your video making it appear like you're right in the action.
Parameters:
/licensekey:ABCD-EFGH-IJKL
Registered license key. If this is missing a 30 day trial is installed./licensename:""Joe Bloggs""
Registered name for the license. Can only be used if a /licensekey is specified/nodesktopshortcut
Does not install an application shortcut on the desktop.
Example: -params='"/licensekey:ABCD-EFGH-IJKL /licensename:""Joe Bloggs"" /nodesktopshortcut"'
$ErrorActionPreference = 'Stop';
$packageName = 'camtasia'
$softwareName = 'camtasia*'
$installerType = 'MSI'
$silentArgs = '/qn /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString)"
if ($installerType -eq 'MSI') {
$silentArgs = "$($_.PSChildName) $silentArgs"
$file = ''
}
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$key.Count matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $_.DisplayName"}
}
#
# Converts parameters into a hashtable where the parameter name is the key and the parameter value is the value
#
function global:ConvertFrom-ChocoParameters ([string]$parameter) {
$arguments = @{};
if ($parameter) {
$match_pattern = "\/(?<option>([a-zA-Z]+)):(?<value>([`"'])?([a-zA-Z0-9- _\\:\.]+)([`"'])?)|\/(?<option>([a-zA-Z]+))"
$option_name = 'option'
$value_name = 'value'
if ($parameter -match $match_pattern) {
$results = $parameter | Select-String $match_pattern -AllMatches
$results.matches | % {
$arguments.Add(
$_.Groups[$option_name].Value.Trim(),
$_.Groups[$value_name].Value.Trim())
}
}
else {
throw "Package Parameters were found but were invalid (REGEX Failure). See package description for correct format."
}
}
return $arguments;
}
#
# Returns a unique temporary filename
#
function global:Get-ChocoUniqueTempName
{
do {
$tempDir = Join-Path -Path $env:TEMP -ChildPath ([System.Guid]::NewGuid().ToString())
} while (Test-Path $tempDir)
return $tempDir
}
#
# Tests if the OS is a Server
#
function global:Test-ChocoServerOS
{
return ($env:OS_NAME -like "*Server*")
}
#
# Added by d.hilgarth
# 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
}
# Added by d.hilgarth
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
}
# Added by d.hilgarth
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.
- camtasia.9.10.2.nupkg (8985d74d070f) - ## / 60
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 |
---|---|---|---|---|
Camtasia (Install) 2024.1.2 | 5867 | Thursday, October 24, 2024 | Approved | |
Camtasia (Install) 2024.1.1 | 611 | Wednesday, October 23, 2024 | Approved | |
Camtasia (Install) 2024.1.0 | 2858 | Tuesday, October 15, 2024 | Approved | |
Camtasia (Install) 2024.0.7 | 4110 | Friday, October 4, 2024 | Approved | |
Camtasia (Install) 2024.0.6 | 966 | Tuesday, October 1, 2024 | Approved | |
Camtasia (Install) 2024.0.5 | 129 | Wednesday, September 25, 2024 | Approved | |
Camtasia (Install) 2024.0.4 | 452 | Tuesday, August 27, 2024 | Approved | |
Camtasia (Install) 2024.0.3 | 129 | Friday, August 23, 2024 | Approved | |
Camtasia (Install) 2024.0.2 | 182 | Tuesday, August 13, 2024 | Approved | |
Camtasia (Install) 2024.0.1 | 383 | Wednesday, June 26, 2024 | Approved | |
Camtasia (Install) 2024.0.0 | 214 | Tuesday, June 4, 2024 | Approved | |
Camtasia (Install) 2023.4.8 | 269 | Tuesday, May 21, 2024 | Approved | |
Camtasia (Install) 2023.4.7 | 432 | Friday, April 19, 2024 | Approved | |
Camtasia (Install) 2023.4.6 | 41 | Wednesday, April 17, 2024 | Approved | |
Camtasia (Install) 2023.4.5 | 206 | Tuesday, April 2, 2024 | Approved | |
Camtasia (Install) 2023.4.4 | 170 | Tuesday, March 19, 2024 | Approved | |
Camtasia (Install) 2023.4.3 | 312 | Tuesday, February 13, 2024 | Approved | |
Camtasia (Install) 2023.4.2 | 263 | Tuesday, January 23, 2024 | Approved | |
Camtasia (Install) 2023.4.1 | 368 | Tuesday, December 12, 2023 | Approved | |
Camtasia (Install) 2023.4.0 | 181 | Thursday, November 30, 2023 | Approved | |
Camtasia (Install) 2023.3.3 | 209 | Tuesday, November 14, 2023 | Approved | |
Camtasia (Install) 2023.3.2 | 344 | Thursday, October 19, 2023 | Approved | |
Camtasia (Install) 2023.3.1 | 85 | Wednesday, October 18, 2023 | Approved | |
Camtasia (Install) 2023.2.0 | 526 | Tuesday, August 22, 2023 | Approved | |
Camtasia (Install) 2023.1.2 | 221 | Tuesday, August 8, 2023 | Approved | |
Camtasia (Install) 2023.1.1 | 238 | Tuesday, July 18, 2023 | Approved | |
Camtasia (Install) 2023.1.0 | 134 | Saturday, July 15, 2023 | Approved | |
Camtasia (Install) 2022.4.1 | 1541 | Tuesday, December 13, 2022 | Approved | |
Camtasia (Install) 2022.4.0 | 173 | Tuesday, December 6, 2022 | Approved | |
Camtasia (Install) 2022.3.0 | 349 | Tuesday, November 15, 2022 | Approved | |
Camtasia (Install) 2022.2.1 | 542 | Thursday, September 29, 2022 | Approved | |
Camtasia (Install) 2022.2.0 | 142 | Tuesday, September 27, 2022 | Approved | |
Camtasia (Install) 2022.1.1 | 496 | Thursday, August 25, 2022 | Approved | |
Camtasia (Install) 2022.1.0 | 293 | Wednesday, August 17, 2022 | Approved | |
Camtasia (Install) 2022.0.4 | 589 | Tuesday, July 26, 2022 | Approved | |
Camtasia (Install) 2022.0.3 | 589 | Saturday, July 16, 2022 | Approved | |
Camtasia (Install) 2021.0.8.3251600 | 12128 | Thursday, August 26, 2021 | Approved | |
Camtasia (Install) 2021.0.7.3245900 | 168 | Tuesday, August 24, 2021 | Approved | |
Camtasia (Install) 2021.0.6.3220700 | 1404 | Tuesday, August 3, 2021 | Approved | |
Camtasia (Install) 2021.0.5.3172200 | 1182 | Wednesday, June 30, 2021 | Approved | |
Camtasia (Install) 2021.0.4.3137100 | 339 | Wednesday, June 9, 2021 | Approved | |
Camtasia (Install) 2021.0.3.3127500 | 300 | Friday, May 28, 2021 | Approved | |
Camtasia (Install) 2021.0.2.3120900 | 131 | Wednesday, May 26, 2021 | Approved | |
Camtasia (Install) 2021.0.1.3058200 | 494 | Thursday, April 29, 2021 | Approved | |
Camtasia (Install) 2021.0.0.3017000 | 186 | Tuesday, April 27, 2021 | Approved | |
Camtasia (Install) 2020.0.13.2835700 | 771 | Monday, February 15, 2021 | Approved | |
Camtasia (Install) 2020.0.12.2647900 | 867 | Tuesday, November 24, 2020 | Approved | |
Camtasia (Install) 2020.0.11.2619500 | 287 | Wednesday, November 11, 2020 | Approved | |
Camtasia (Install) 2020.0.10.2577300 | 415 | Saturday, October 17, 2020 | Approved | |
Camtasia (Install) 2020.0.9.2563100 | 177 | Thursday, October 15, 2020 | Approved | |
Camtasia (Install) 2020.0.8.2452100 | 562 | Thursday, September 3, 2020 | Approved | |
Camtasia (Install) 2020.0.7.2401500 | 334 | Thursday, August 13, 2020 | Approved | |
Camtasia (Install) 2020.0.6.2337500 | 375 | Thursday, July 23, 2020 | Approved | |
Camtasia (Install) 2020.0.5.2278200 | 395 | Tuesday, June 30, 2020 | Approved | |
Camtasia (Install) 2020.0.4.2250000 | 307 | Tuesday, June 16, 2020 | Approved | |
Camtasia (Install) 2020.0.3.2230900 | 263 | Saturday, June 6, 2020 | Approved | |
Camtasia (Install) 2020.0.2.2151900 | 408 | Thursday, May 7, 2020 | Approved | |
Camtasia (Install) 2020.0.1.2132900 | 275 | Wednesday, April 29, 2020 | Approved | |
Camtasia (Install) 2020.0.0.2087400 | 202 | Tuesday, April 28, 2020 | Approved | |
Camtasia (Install) 2019.0.10.1766200 | 524 | Tuesday, March 10, 2020 | Approved | |
Camtasia (Install) 2019.0.9.1764300 | 425 | Tuesday, January 21, 2020 | Approved | |
Camtasia (Install) 2019.0.8.1748400 | 458 | Tuesday, November 26, 2019 | Approved | |
Camtasia (Install) 2019.0.7.503400 | 570 | Tuesday, August 27, 2019 | Approved | |
Camtasia (Install) 2019.0.6.500400 | 251 | Thursday, August 15, 2019 | Approved | |
Camtasia (Install) 2019.0.5.495900 | 227 | Thursday, August 8, 2019 | Approved | |
Camtasia (Install) 2019.0.4.492900 | 241 | Tuesday, July 30, 2019 | Approved | |
Camtasia (Install) 2019.0.3.480900 | 337 | Wednesday, June 26, 2019 | Approved | |
Camtasia (Install) 2019.0.2.471900 | 301 | Wednesday, May 29, 2019 | Approved | |
Camtasia (Install) 2019.0.1.462600 | 310 | Tuesday, May 7, 2019 | Approved | |
Camtasia (Install) 2019.0.0.449400 | 243 | Tuesday, April 30, 2019 | Approved | |
Camtasia (Install) 2018.0.7.404500 | 616 | Wednesday, November 14, 2018 | Approved | |
Camtasia (Install) 2018.0.6.401900 | 309 | Tuesday, November 6, 2018 | Approved | |
Camtasia (Install) 2018.0.3.374700 | 377 | Tuesday, August 28, 2018 | Approved | |
Camtasia (Install) 2018.0.2.363401 | 294 | Saturday, August 18, 2018 | Approved | |
Camtasia (Install) 2018.0.2.363400 | 272 | Tuesday, August 14, 2018 | Approved | |
Camtasia (Install) 2018.0.1.345700 | 337 | Tuesday, July 24, 2018 | Approved | |
Camtasia (Install) 2018.0.0.335800 | 290 | Tuesday, July 24, 2018 | Approved | |
Camtasia (Install) 2018.0.0.3358 | 332 | Friday, July 13, 2018 | Approved | |
Camtasia (Install) 9.10.2 | 774 | Tuesday, March 13, 2018 | Approved | |
Camtasia (Install) 9.10.1 | 552 | Wednesday, November 22, 2017 | Approved | |
Camtasia (Install) 9.10.0 | 468 | Thursday, September 21, 2017 | Approved | |
Camtasia (Install) 9.05 | 508 | Monday, May 22, 2017 | Approved | |
Camtasia (Install) 9.04 | 439 | Friday, April 28, 2017 | Approved | |
Camtasia (Install) 9.03 | 421 | Sunday, March 12, 2017 | Approved |
Copyright 2017 Techsmith
This package has no dependencies.
Ground Rules:
- This discussion is only about Camtasia (Install) and the Camtasia (Install) 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 Camtasia (Install), 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.