%ProgramData%\TechSmith\Snagit\ Snagit picks it up on launch. After install, run:
$snagitPath = "$env:ProgramFiles\TechSmith\Snagit\Snagit32.exe" $licenseFile = "$env:ProgramData\TechSmith\Snagit\license.sclic" $configFile = "$env:AppData\TechSmith\Snagit\SnagitConfig.xml" Write-Host "Snagit installed: $(Test-Path $snagitPath)" Write-Host "License present: $(Test-Path $licenseFile)" Write-Host "Config present: $(Test-Path $configFile)"
if (Test-Path $snagitPath) $version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($snagitPath).FileVersion Write-Host "Version: $version"
REM Optional: Remove desktop shortcut del "%Public%\Desktop\Snagit.lnk" 2>nul exit /b 0 Method A — License file (recommended for air-gapped) Place license.sclic in:
Snagit Enterprise Deployment [Editor's Choice]
%ProgramData%\TechSmith\Snagit\ Snagit picks it up on launch. After install, run:
$snagitPath = "$env:ProgramFiles\TechSmith\Snagit\Snagit32.exe" $licenseFile = "$env:ProgramData\TechSmith\Snagit\license.sclic" $configFile = "$env:AppData\TechSmith\Snagit\SnagitConfig.xml" Write-Host "Snagit installed: $(Test-Path $snagitPath)" Write-Host "License present: $(Test-Path $licenseFile)" Write-Host "Config present: $(Test-Path $configFile)" snagit enterprise deployment
if (Test-Path $snagitPath) $version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($snagitPath).FileVersion Write-Host "Version: $version" %ProgramData%\TechSmith\Snagit\ Snagit picks it up on launch
REM Optional: Remove desktop shortcut del "%Public%\Desktop\Snagit.lnk" 2>nul exit /b 0 Method A — License file (recommended for air-gapped) Place license.sclic in: snagit enterprise deployment