DYMO Label Software allows you to quickly create and print labels to your DYMO Label printer. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of DYMO Label Software from the command line using both the EXE & MSI installers.
How to Install DYMO Label Software Silently
DYMO Label Software 8.7 Silent Install (EXE)
- Navigate to: https://s3.amazonaws.com/download.dymo.com/dymo/Software/Win/DLS8Setup8.7.4.exe
- Download the DLS8Setup8.7.x.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:
DLS8Setup8.7.x.exe /S /v/qn
- Press Enter
After a few moments you should see the DYMO Label Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | DYMO Label |
Vendor: | Newell Rubbermaid |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch: | DLS8Setup8.7.x.exe /S /v/qn |
Silent Uninstall Switch: | DLS8Setup8.7.x.exe /S /x /v/qn |
Download Link: | https://www.dymo.com/compatibility-chart.html |
PowerShell Script: | https://silentinstallhq.com/dymo-label-software-install-and-uninstall-powershell/ |
DYMO Label Software 8.7 Silent Install (MSI)
- Navigate to: https://s3.amazonaws.com/download.dymo.com/dymo/Software/Win/DLS8Setup8.7.4.exe
- Download the DLS8Setup8.7.x.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 to extract the MSI:
DLS8Setup8.7.x.exe /S /x /b"C:\Downloads\DYMOLabel" /v"/qn"
- Press Enter
- Navigate to the C:\Downloads\DYMOLabel folder
- Enter the following command:
MsiExec.exe /i "DYMO Label.msi" /qn
- Press Enter
After a few moments you should see the DYMO Label Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | DYMO Label |
Vendor: | Newell Rubbermaid |
Architecture: | x86 |
Installer Type: | MSI |
Silent Install Switch: | MsiExec.exe /i "DYMO Label.msi" /qn |
Silent Uninstall Switch: | MsiExec.exe /x "DYMO Label.msi" /qn |
Repair Command: | MsiExec.exe /fa "DYMO Label.msi" /qn |
Download Link: | https://www.dymo.com/compatibility-chart.html |
PowerShell Script: | https://silentinstallhq.com/dymo-label-software-install-and-uninstall-powershell/ |
DYMO Label Software 8.5 Silent Install (EXE)
- Navigate to: https://download.dymo.com/dymo/Software/Win/DLS8Setup.8.5.4.exe
- Download the DLS8Setup.8.5.x.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:
DLS8Setup.8.5.x.exe /S
- Press Enter
After a few moments you should see the DYMO Label Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | DYMO Label |
Vendor: | Sanford, L.P. |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch: | DLS8Setup.8.5.x.exe /S |
Silent Uninstall Switch (32-bit System) | "%ProgramFiles%\DYMO\DYMO Label Software\Uninstall DYMO Label.exe" /S |
Silent Uninstall Switch (64-bit System) | "%ProgramFiles(x86)%\DYMO\DYMO Label Software\Uninstall DYMO Label.exe" /S |
Download Link: | https://www.dymo.com/compatibility-chart.html |
PowerShell Script: | https://silentinstallhq.com/dymo-label-software-install-and-uninstall-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 DYMO Label Software Installation Log File
The DYMO Label Software 8.7 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.
DYMO Label Software 8.7 Silent Install (EXE) with Logging
DLS8Setup8.7.x.exe /S /v"/qn /L*v %WINDIR%\Temp\DYMOLabel-Install.log" |
DYMO Label Software 8.7 Silent Install (MSI) with Logging
MsiExec.exe /i "DYMO Label.msi" /qn /L*v %WINDIR%\Temp\DYMOLabel-Install.log" |
Change the DYMO Label Software Default Installation Directory
You can also change the default installation directory by using the following command line parameters. In this example, I’m installing DYMO Label Software to “C:\DYMO”
DYMO Label Software 8.7 (EXE)
DLS8Setup8.7.x.exe /S /v"INSTALLDIR=C:\DYMO /qn" |
DYMO Label Software 8.7 (MSI)
MsiExec.exe /i "DYMO Label.msi" INSTALLDIR=C:\DYMO /qn |
Disable the Check for Updates and DYMO Label Registration Wizard
- Open Notepad or your favorite text editor
- Add the following lines:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="DYMO.DLS.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<applicationSettings>
<DYMO.DLS.Properties.Settings>
<setting name="OnlineNewsAllowed" serializeAs="String">
<value>false</value>
</setting>
<setting name="DymoStampsAllowed" serializeAs="String">
<value>true</value>
</setting>
<setting name="BuyLabelsAllowed" serializeAs="String">
<value>false</value>
</setting>
<setting name="RssNewsAllowed" serializeAs="String">
<value>false</value>
</setting>
<setting name="FirstRunWizardAllowed" serializeAs="String">
<value>false</value>
</setting>
<setting name="RegistrationAllowed" serializeAs="String">
<value>false</value>
</setting>
<setting name="DataTrackingAllowed" serializeAs="String">
<value>false</value>
</setting>
<setting name="OnlineUserGuideAllowed" serializeAs="String">
<value>true</value>
</setting>
<setting name="OnlineHelpAllowed" serializeAs="String">
<value>true</value>
</setting>
<setting name="OnlineTechSupportAllowed" serializeAs="String">
<value>false</value>
</setting>
<setting name="DYMOOnlineRootUrl" serializeAs="String">
<value />
</setting>
<setting name="EnableAnimation" serializeAs="String">
<value>false</value>
</setting>
<setting name="EnableSoftwareUpdate" serializeAs="String">
<value>false</value>
</setting>
<setting name="SoftwareUpdateFolderUrl" serializeAs="String">
<value />
</setting>
<setting name="ManualsFolderUrl" serializeAs="String">
<value />
</setting>
<setting name="DisableAutomaticWebConnections" serializeAs="String">
<value>False</value>
</setting>
</DYMO.DLS.Properties.Settings>
</applicationSettings>
</configuration>
- Save the file to “C:\Downloads” and name it: DLS.exe.config
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter one of the following commands:
32-bit System
xcopy /y ".\DLS.exe.config" "%ProgramFiles%\Dymo\DYMO Label Software\" |
64-bit System
xcopy /y ".\DLS.exe.config" "%ProgramFiles(x86)%\Dymo\DYMO Label Software\" |
How to Uninstall DYMO Label Software Silently
Check out the DYMO Label Software Install and Uninstall (PowerShell) post 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:
Version | DYMO Label Software Silent Uninstall String |
8.7.4 | MsiExec.exe /x {764D82EE-A8F0-426A-88B8-71AC3B28E332} /qn |
8.7.3 | MsiExec.exe /x {54D84731-D2F9-4E8C-B18E-E91838BE52BB} /qn |
8.7.2 | MsiExec.exe /x {54D84731-D2F9-4E8C-B18E-E91838BE52BB} /qn |
8.7.1 | MsiExec.exe /x {CE289CFA-898E-4601-B858-A25EC0CEA9EE} /qn |
8.6.710 | MsiExec.exe /x {2C8F4C88-E015-4D55-AB5A-ABD1C53C1B71} /qn |
8.6.700 | MsiExec.exe /x {25E75254-A7B8-4627-88A1-A3933F188E6A} /qn |
DYMO Label Software 8.5 Silent Uninstall (EXE) on 32-bit Systems
"%ProgramFiles%\DYMO\DYMO Label Software\Uninstall DYMO Label.exe" /S |
DYMO Label Software 8.5 Silent Uninstall (EXE) on 64-bit Systems
"%ProgramFiles(x86)%\DYMO\DYMO Label Software\Uninstall DYMO Label.exe" /S |
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.