Camtasia is a software suite, created and published by TechSmith, for creating and recording video tutorials and presentations. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Camtasia 2023 from the command line using both the EXE & MSI installer.
How to Install TechSmith Camtasia 2023 Silently
Camtasia 2023 Silent Install (EXE)
- Navigate to: https://download.techsmith.com/camtasiastudio/releases/camtasia.exe
- Download & Copy the camtasia.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: camtasia.exe /install /quiet /norestart
- Press Enter
After a few moments you will find Camtasia 2023 entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Camtasia 2023 |
Vendor: | TechSmith Corporation |
Architecture: | x64 |
Installer Type: | EXE |
Silent Install Switch: | camtasia.exe /install /quiet /norestart |
Silent Uninstall Switch: | camtasia.exe /uninstall /quiet /norestart |
Download Link: | https://download.techsmith.com/camtasiastudio/releases/camtasia.exe |
PowerShell Script: | https://silentinstallhq.com/techsmith-camtasia-2023-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-techsmith-camtasia-2023-powershell/ |
Camtasia 2023 Silent Install (MSI)
- Navigate to: https://download.techsmith.com/camtasiastudio/releases/camtasia.msi
- Download the camtasia.msi to a folder created at (C:\Downloads)
- Navigate to: https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section
- Select the x64 Standalone Installer
- Download the MicrosoftEdgeWebView2RuntimeInstallerX64.exe to a folder created at (C:\Downloads)
- Navigate to: https://aka.ms/vs/17/release/vc_redist.x64.exe
- Download the VC_redist.x64.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following commands:
|
VC_redist.x64.exe /install /quiet /norestart |
MsiExec.exe /i camtasia.msi TSC_SOFTWARE_KEY=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /qn |
After a few moments you will find Camtasia 2023 entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Camtasia 2023 |
Vendor: | TechSmith Corporation |
Architecture: | x64 |
Installer Type: | MSI |
Silent Install Switch (Step1) |
|
Silent Install Switch (Step2) | VC_redist.x64.exe /install /quiet /norestart |
Silent Install Switch (Step3) | MsiExec.exe /i camtasia.msi TSC_SOFTWARE_KEY=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /qn |
Silent Uninstall Switch: | MsiExec.exe /x camtasia.msi /qn |
Repair Command: | MsiExec.exe /fa camtasia.msi /qn |
Download Link: | https://download.techsmith.com/camtasiastudio/releases/camtasia.msi |
PowerShell Script: | https://silentinstallhq.com/techsmith-camtasia-2023-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-techsmith-camtasia-2023-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Create a Camtasia 2023 Installation Log File
The Camtasia 2023 installers offer the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following command to create a verbose log file with details about the installation.
Camtasia 2023 Silent Install (EXE) with Logging
camtasia.exe /install /quiet /norestart /log "%WINDIR%\Temp\Camtasia2023-Install.log" |
Camtasia 2023 Silent Install (MSI) with Logging
MsiExec.exe /i camtasia.msi TSC_SOFTWARE_KEY=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /qn /L*v "%WINDIR%\Temp\Camtasia2023-Install.log" |
Customize the Camtasia 2023 Deployment (TechSmith Deployment Tool)
The TechSmith Deployment Tool displays the available options for creating a custom MST file.
- Download the TechSmith Deployment Tool: https://download.techsmith.com/tscdeploymenttool/TechSmith_Deployment_Tool.exe
- Launch the TechSmith Deployment Tool
- Select Open MSI Package…
- Open the camtasia.msi you downloaded earlier
- Configure settings based on your preferences
- Select Create Transform File
- Accept End-User License Agreement
- Click Create Transform…
- You should now see the camtasia.mst file in the same directory as the camtasia.msi
- Run the following commands:
|
VC_redist.x64.exe /install /quiet /norestart |
MsiExec.exe /i camtasia.msi TRANSFORMS=camtasia.mst /qn |
How to Uninstall TechSmith Camtasia 2023 Silently
Check out the following posts for a scripted solution:
TechSmith Camtasia 2023 Install and Uninstall (PowerShell) |
TechSmith Camtasia 2023 Silent Uninstall (PowerShell) |
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter one of the following commands:
Camtasia 2023 Silent Uninstall (EXE)
camtasia.exe /uninstall /quiet /norestart |
Version | Camtasia 2023 Silent Uninstall (Keep Library) |
2023.0.1 | MsiExec.exe /x {70FE9703-FB65-40B6-95CC-0A91184A796B} TSC_KEEP_LIBRARY=1 /qn |
2023.0.0 | MsiExec.exe /x {201ACBB5-E884-4439-A50B-2384EE8E07E5} TSC_KEEP_LIBRARY=1 /qn |
Version | Camtasia 2023 Silent Uninstall (Delete Library) |
2023.0.1 | MsiExec.exe /x {70FE9703-FB65-40B6-95CC-0A91184A796B} TSC_KEEP_LIBRARY=0 /qn |
2023.0.0 | MsiExec.exe /x {201ACBB5-E884-4439-A50B-2384EE8E07E5} TSC_KEEP_LIBRARY=0 /qn |
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.