Ditto Silent Install (How-To Guide)

Ditto is an extension to the standard Windows clipboard. It saves each item placed on the clipboard allowing you access to any of those items at a later time. Ditto allows you to save any type of information that can be put on the clipboard including text, images, html, custom formats, etc. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Ditto from the command line using the EXE installer.

How to Install Ditto Silently

Ditto 32-bit Silent Install (EXE)

  1. Navigate to: https://ditto-cp.sourceforge.io/
  2. Select Download link
  3. Download the DittoSetup_x_y_z.exe to a folder created at (C:\Downloads)
  4. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  5. Navigate to the C:\Downloads folder
  6. Enter the following command: DittoSetup_x_y_z.exe /VERYSILENT /NORESTART
  7. Press Enter

After a few moments you will find Ditto entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.

Software Title:Ditto 32-bit
Vendor:Scott Brogden
Architecture:x86
Installer Type:EXE
Silent Install Switch:DittoSetup_x_y_z.exe /VERYSILENT /NORESTART
Silent Uninstall Switch (32-bit System)"%ProgramFiles%\Ditto\unins000.exe" /VERYSILENT /NORESTART
Silent Uninstall Switch (64-bit System)"%ProgramFiles(x86)%\Ditto\unins000.exe" /VERYSILENT /NORESTART
Download Link:https://ditto-cp.sourceforge.io/
PowerShell Script:https://silentinstallhq.com/ditto-install-and-uninstall-powershell/
Detection Script:https://silentinstallhq.com/create-a-custom-detection-script-for-ditto-powershell/

Ditto 64-bit Silent Install (EXE)

  1. Navigate to: https://ditto-cp.sourceforge.io/
  2. Select Download 64bit link
  3. Download the DittoSetup_x_y_z.exe to a folder created at (C:\Downloads)
  4. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  5. Navigate to the C:\Downloads folder
  6. Enter the following command: DittoSetup_64bit_x_y_z.exe /VERYSILENT /NORESTART
  7. Press Enter

After a few moments you will find Ditto entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.

Software Title:Ditto 64-bit
Vendor:Scott Brogden
Architecture:x64
Installer Type:EXE
Silent Install Switch:DittoSetup_64bit_x_y_z.exe /VERYSILENT /NORESTART
Silent Uninstall Switch:"%ProgramFiles%\Ditto\unins000.exe" /VERYSILENT /NORESTART
Download Link:https://ditto-cp.sourceforge.io/
PowerShell Script:https://silentinstallhq.com/ditto-install-and-uninstall-powershell/
Detection Script:https://silentinstallhq.com/create-a-custom-detection-script-for-ditto-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 Ditto Installation Log File

The Ditto 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.

Ditto 32-bit Silent Install (EXE) with Logging

DittoSetup_x_y_z.exe /VERYSILENT /NORESTART /LOG="%WINDIR%\Temp\Ditto-Install.log"

Ditto 64-bit Silent Install (EXE) with Logging

DittoSetup_64bit_x_y_z.exe /VERYSILENT /NORESTART /LOG="%WINDIR%\Temp\Ditto-Install.log"

Change the Ditto Default Installation Directory

You can also change the default installation directory by using the following command line parameters. In this example, I’m installing Ditto to “C:\Ditto”

Ditto 32-bit (EXE)

DittoSetup_x_y_z.exe /DIR="C:\Ditto" /VERYSILENT /NORESTART

Ditto 64-bit (EXE)

DittoSetup_64bit_x_y_z.exe /DIR="C:\Ditto" /VERYSILENT /NORESTART

Add Windows Firewall Exception for Ditto on Port 23443

Ditto 32-bit Silent Install (EXE) with Added Firewall Exception

DittoSetup_x_y_z.exe /VERYSILENT /NORESTART /MERGETASKS=addfirewallexception

Ditto 64-bit Silent Install (EXE) with Added Firewall Exception

DittoSetup_64bit_x_y_z.exe /VERYSILENT /NORESTART /MERGETASKS=addfirewallexception

Disable Ditto Run At Startup

Ditto 32-bit Silent Install (EXE) with Run At Startup Disabled

DittoSetup_x_y_z.exe /VERYSILENT /NORESTART /MERGETASKS=!runatstartup

Ditto 64-bit Silent Install (EXE) with Run At Startup Disabled

DittoSetup_64bit_x_y_z.exe /VERYSILENT /NORESTART /MERGETASKS=!runatstartup

How to Uninstall Ditto Silently

Check out the following posts for a scripted solution:

Ditto Install and Uninstall (PowerShell)
Ditto Silent Uninstall (PowerShell)
  1. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  2. Enter one of the following commands:

Ditto 32-bit Silent Uninstall (EXE) on 32-bit System

TASKKILL /F /IM "Ditto.exe"
"%ProgramFiles%\Ditto\unins000.exe" /VERYSILENT /NORESTART

Ditto 32-bit Silent Uninstall (EXE) on 64-bit System

TASKKILL /F /IM "Ditto.exe"
"%ProgramFiles(x86)%\Ditto\unins000.exe" /VERYSILENT /NORESTART

Ditto 64-bit Silent Uninstall (EXE) on 64-bit System

TASKKILL /F /IM "Ditto.exe"
"%ProgramFiles%\Ditto\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.

Jason Bergner

I am an accomplished Software Engineer at Patch My PC, leveraging more than 18 years of hands-on experience in Configuration Manager administration and application packaging. I am driven by a genuine passion for solving complex problems and consistently strive to discover innovative and effective solutions. Sharing my extensive knowledge of application deployments is a true joy for me, and I am honored to contribute to the community here at Silent Install HQ.

Recent Posts