Skip to content
Skillv1.0.0

techsmith-install-auth

Install TechSmith Snagit COM API and register the COM server for automation. Use when setting up Snagit automation, configuring COM interop, or initializing Camtasia batch processing. Trigger: "instal

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/techsmith-pack/skills/techsmith-install-auth/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill techsmith-install-auth. Copyright stays with the author (MIT).

TechSmith Install & Auth

Overview

TechSmith products (Snagit, Camtasia) offer automation through the Snagit COM Server API (Windows) and Camtasia's command-line batch processing. No traditional API keys -- COM registration is the auth mechanism.

Prerequisites

  • Windows OS (COM API is Windows-only)
  • Snagit 2023+ or Camtasia 2023+ installed
  • PowerShell 5.1+ or .NET SDK for COM interop

Instructions

Step 1: Verify Snagit COM Server Registration

# Check if Snagit COM server is registered
$snagit = New-Object -ComObject Snagit.ImageCapture
if ($snagit) { Write-Host "Snagit COM server registered successfully" }

Step 2: Re-register COM Server (if needed)

# Run as Administrator
$snagitPath = "C:\Program Files\TechSmith\Snagit 2025\Snagit32.exe"
& $snagitPath /register

Step 3: Python COM Interop

# pip install pywin32
import win32com.client

snagit = win32com.client.Dispatch("Snagit.ImageCapture")
print(f"Snagit version: Connected via COM")

Step 4: C# COM Interop

using SNAGITLib;

var capture = new ImageCaptureClass();
Console.WriteLine("Snagit COM initialized");

Step 5: Verify Camtasia CLI

# Camtasia batch producer
$camtasia = "C:\Program Files\TechSmith\Camtasia 2025\CamtasiaProducer.exe"
& $camtasia --help

Error Handling

Error Cause Solution
REGDB_E_CLASSNOTREG COM not registered Run Snagit32.exe /register as admin
Class not registered Wrong bitness Use 32-bit PowerShell for 32-bit Snagit
pywin32 not found Missing package pip install pywin32
Camtasia CLI not found Not in PATH Use full path to CamtasiaProducer.exe

Resources

Next Steps

Proceed to techsmith-hello-world for your first capture.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-techsmith-ins-a1775b/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-techsmith-ins-a1775b.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-techsmith-ins-a1775b",
  "kind": "skill",
  "name": "techsmith-install-auth",
  "description": "Install TechSmith Snagit COM API and register the COM server for automation. Use when setting up Snagit automation, configuring COM interop, or initializing Camtasia batch processing. Trigger: \"install techsmith, setup snagit, techsmith COM API\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "screen-capture",
      "video",
      "techsmith",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Install TechSmith Snagit COM API and register the COM server for automation. Use when setting up Snagit automation, configuring COM interop, or initializing Camtasia batch processing. Trigger: \"install techsmith, setup snagit, techsmith COM API\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/techsmith-pack/skills/techsmith-install-auth/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/techsmith-pack/skills/techsmith-install-auth/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/techsmith-pack/skills/techsmith-install-auth/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(pip:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# TechSmith Install & Auth\n\n## Overview\n\nTechSmith products (Snagit, Camtasia) offer automation through the Snagit COM Server API (Windows) and Camtasia's command-line batch processing. No traditional API keys -- COM registration is the auth mechanism.\n\n## Prerequisites\n\n- Windows OS (COM API is Windows-only)\n- Snagit 2023+ or Camtasia 2023+ installed\n- PowerShell 5.1+ or .NET SDK for COM interop\n\n## Instructions\n\n### Step 1: Verify Snagit COM Server Registration\n\n```powershell\n# Check if Snagit COM server is registered\n$snagit = New-Object -ComObject Snagit.ImageCapture\nif ($snagit) { Write-H",
  "cost": {
    "context_tokens": 514
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-techsmith-ins-a1775b/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.