TeraCopy is a file transfer utility designed as an alternative for the built-in Windows Explorer file transfer feature. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of TeraCopy from the command line using the EXE installer.
How to Install TeraCopy Silently
TeraCopy Silent Install (EXE)
- Navigate to: https://codesector.com/files/teracopy.exe
- Download the teracopy.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: teracopy.exe /exenoui /noprereqs /qn
- Press Enter
After a few moments you should see the TeraCopy shortcut in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | TeraCopy |
Vendor: | Code Sector |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: | teracopy.exe /exenoui /noprereqs /qn |
Silent Uninstall Switch: | teracopy.exe /exenoui /qn REMOVE=ALL |
Download Link: | https://codesector.com/files/teracopy.exe |
PowerShell Script: | https://silentinstallhq.com/teracopy-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-teracopy-powershell/ |
TeraCopy Silent Install (EXE) – Version 3.8.2 & Older
- Navigate to: https://codesector.com/files/teracopy3.8.2.exe
- Download the teracopy.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: teracopy.exe /VERYSILENT /NORESTART
- Press Enter
After a few moments you should see the TeraCopy shortcut in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | TeraCopy |
Vendor: | Code Sector |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: | teracopy.exe /VERYSILENT /NORESTART |
Silent Uninstall Switch: | "%ProgramFiles%\TeraCopy\unins000.exe" /VERYSILENT /NORESTART |
Download Link: | https://codesector.com/files/teracopy3.8.2.exe |
PowerShell Script: | https://silentinstallhq.com/teracopy-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-teracopy-powershell/ |
TeraCopy 2.3 Silent Install (EXE)
- Navigate to: https://codesector.com/files/teracopy23.exe
- Download the teracopy23.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: teracopy23.exe /VERYSILENT /NORESTART
- Press Enter
After a few moments you should see the TeraCopy shortcut in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | TeraCopy 2.3 |
Vendor: | Code Sector |
Version: | 2.3 |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: | teracopy23.exe /VERYSILENT /NORESTART |
Silent Uninstall Switch: | "%ProgramFiles%\TeraCopy\unins000.exe" /VERYSILENT /NORESTART |
Download Link: | https://codesector.com/files/teracopy23.exe |
PowerShell Script: | https://silentinstallhq.com/teracopy-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-teracopy-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download link provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Create a TeraCopy Installation Log File
The TeraCopy installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.
TeraCopy Silent Install (EXE) with Logging (Option 1)
teracopy.exe /exenoui /exelog C:\Windows\Temp\TeraCopy.log /qn |
TeraCopy Silent Install (EXE) with Logging (Option 2)
teracopy.exe /exenoui /qn /L*v "%WINDIR%\Temp\TeraCopy-Install.log" |
TeraCopy Silent Install (EXE) with Logging – Version 3.8.2 & Older
teracopy.exe /VERYSILENT /NORESTART /LOG="%WINDIR%\Temp\TeraCopy-Install.log" |
Include the TeraCopy Desktop Shortcut During Install – Version 3.8.2 & Older
The TeraCopy installer does NOT include a desktop shortcut by default. If you want the desktop shortcut included during installation, then you can run the following command line switch.
TeraCopy Silent Install (EXE) with Desktop Shortcut – Version 3.8.2 & Older
teracopy.exe /VERYSILENT /NORESTART /MERGETASKS=desktopicon |
Change the TeraCopy Default Installation Directory – Version 3.8.2 & Older
You can also change the default installation directory by using the following command line parameters. In this example, I’m installing TeraCopy to “C:\TeraCopy”
teracopy.exe /DIR="C:\TeraCopy" /VERYSILENT /NORESTART |
How to Uninstall TeraCopy Silently
Check out the following posts for a scripted solution:
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter one of the following commands:
TeraCopy Silent Uninstall (EXE)
teracopy.exe /exenoui /qn REMOVE=ALL |
TeraCopy Silent Uninstall (EXE) – Version 3.8.2 & Older
"%ProgramFiles%\TeraCopy\unins000.exe" /VERYSILENT /NORESTART |
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.