AlexMT
Posts: 22
Joined: Wed Jun 05, 2024 10:40 am

DYMO Connect Silent Install and Uninstall Parameters

I put together a list of silent parameters that can be used for both installing and uninstalling the DYMO Connect EXE application on multiple stations.

About: DYMO Connect for Desktop software allows you to quickly create and print labels to your DYMO Label printer.

Application Name: DYMO Connect
Version: 1.4.7.48
Main Application Website URL:
https://download.dymo.com/dymo/Software ... 4.7.48.exe

EXE Installer (Silent Install): DCDSetup1.4.7.48.exe

Code: Select all

/S /v"COLLECTDATA=0 /qn /l*v <log_file_path>"

EXE Installer (Silent Uninstall): DCDSetup1.4.7.48.exe

Code: Select all

/S /x /v"/qn /l*v <log_file_path>"
jobshopr
Posts: 1
Joined: Mon Jul 07, 2025 6:14 pm

Re: DYMO Connect Silent Install and Uninstall Parameters

With the release of Dymo Connect 1.5.0.17, I had to add steps to stop the DYMOConnectPnPService Service and then kill the two processes before running the software update.

@echo off
SET ServiceName=DYMOConnectPnPService

REM Check if the service exists
sc query "%ServiceName%" >nul 2>&1
IF %ERRORLEVEL% NEQ 0 (
echo Service "%ServiceName%" does not exist.
) ELSE (
echo Stopping service "%ServiceName%"...
net stop "%ServiceName%"
)

%SYSTEMROOT%\System32\taskkill.exe /f /im DYMOConnectLauncher.exe
%SYSTEMROOT%\System32\taskkill.exe /f /im DYMO.WebApi.Win.Host.exe

If you don't do that before you run the silent upgrade, then the printer drivers do not get installed.
I'm using PDQ, so I ran those commands first, then ran the installer, and then forced a reboot to start the service and processes up again.
Catalin
Posts: 7528
Joined: Wed Jun 13, 2018 7:49 am

Re: DYMO Connect Silent Install and Uninstall Parameters

Hello and welcome to our forums,

Thank you very much for your followup on this!

I am sure this will be of help for further users facing a similar scenario. :D

Best regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Silent Install Command Line”