Dell Display and Peripheral Manager
Silent install package for Dell Display and Peripheral Manager
2.1.2.13-2
Utilities
Utilities
- package: tis-dell-display-peripheral-manager
- name: Dell Display and Peripheral Manager
- version: 2.1.2.13-2
- categories: Utilities
- maintainer: Joffrey Le Piquet
- editor: Dell
- licence: proprietary_free
- target_os: windows
- impacted_process: DDPM.Subagent,DDPM.Subagent.User,Dell.CoreServices.Client,Dell.TechHub.Analytics.SubAgent,Dell.TechHub.DataManager.SubAgent,Dell.TechHub,Dell.TechHub.Instrumentation.SubAgent,Dell.TechHub.Instrumentation.UserProcess,Dell.UCA.Manager,Dell.Update.SubAgent,DPM,DPMCrashHandler,DPMService
- architecture: x64,arm
- signature_date:
- size: 486.73 Mo
- installed_size: 46.62 Mo
package : tis-dell-display-peripheral-manager
version : 2.1.2.13-2
architecture : x64,arm
section : base
priority : optional
name : Dell Display and Peripheral Manager
categories : Utilities
maintainer : Joffrey Le Piquet
description : Set up and configure your Dell monitors and peripherals such as keyboards, mice, webcams, audio devices and active pens.
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.5
sources :
installed_size : 46624768
impacted_process : DDPM.Subagent,DDPM.Subagent.User,Dell.CoreServices.Client,Dell.TechHub.Analytics.SubAgent,Dell.TechHub.DataManager.SubAgent,Dell.TechHub,Dell.TechHub.Instrumentation.SubAgent,Dell.TechHub.Instrumentation.UserProcess,Dell.UCA.Manager,Dell.Update.SubAgent,DPM,DPMCrashHandler,DPMService
description_fr : Optimisez l'efficacité avec des fonctionnalités qui vous permettent d'organiser votre écran, de personnaliser ses paramètres et de simplifier la gestion.
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : Dell
keywords : dell,screen,update,manage
licence : proprietary_free
homepage :
package_uuid : 9c70941e-a17d-47cc-8291-5b35652e6cca
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 5ff4b8e68898514197289df70be5cd63db5ff281391dc99635999b3743b06ac6
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-12-22T03:02:01.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : GhDWN74loyRHVnw2+vif6gqbJEkynCdE2EGE1JXD/j+rBsqYyVb27Q9ESI8TAG4eOOC5ikVDFMSuWWzeOYxOcaEjk/SKPE3NjkUm05LQjuy3qopWj00+oeamyV67tJNHZtRus7lWA5GcueVkIHyfsyaEpPF/5zrZCTevxfpIAm1c7ArR73OiOoIzMM+HVue9+2uhR9V0D5TpomCrC41oZtXBb6rjtv+2cf4vyaOAeErK5dkY76R6RLfPmoDy4UZXG1pm1SOAzAhT8ubiVWeWrH/81MyNg4nbCBlS2b+UmnybOTSV7mmui1ysGmb5MBNbOgtfsH1KQexB0FITIClOGw==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
install_file = glob.glob('*.exe')[0]
install_exe_if_needed(install_file,
silentflags='/S',
name='Dell Display and Peripheral Manager',
min_version=control.get_software_version(),
timeout=1200
)
uninstallkey.clear()
def uninstall():
for to_uninstall in installed_softwares(name="Dell Display and Peripheral Manager"):
killalltasks(ensure_list(control.impacted_process))
run(to_uninstall["uninstall_string"].split(" -")[0] + " /uninst /Silent",timeout=1200)
wait_uninstallkey_absent(to_uninstall["key"])
# Uninstalling older version of the software that can remains
for to_uninstall in installed_softwares(name="Dell Core Services"):
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
# -*- coding: utf-8 -*-
from setuphelpers import *
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
base_url = "https://clientperipherals.dell.com/DDPM/Windows/Application"
latest_version_url = f"{base_url}/SWMetaData.json"
version = wgets(latest_version_url, proxies=proxies, as_json=True)['Softwares'][0]['SoftwareVersion']
download_url = f"{base_url}/DDPM-Setup_{version}.exe"
latest_bin = download_url.rsplit('/', 1)[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
expected_issuer = 'Dell Technologies Inc.'
sign_name = waptlicences.check_msi_signature(latest_bin)[0]
if sign_name != expected_issuer:
error('Bad issuer %s != %s ' % (sign_name,expected_issuer))
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
f7379b22858bba1e76c931117457ed7a3abe58939f7a7568fd2f89e0e7fdd2f8 : DDPM-Setup_2.1.2.13.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8a6ef38e181155c35a19559f294dd7e9288f9e57c561f5f6622aacfec50e3acc : WAPT/control
5ff4b8e68898514197289df70be5cd63db5ff281391dc99635999b3743b06ac6 : WAPT/icon.png
376eb7c9bc3f03fb997423b4f000997ee048c0afdbe117e07706a425f5365022 : luti.json
de390e34699a11370dc6989e9c8218f50ab7ee563936ca1eccf37d17c28d210f : setup.py
1c1c73cddfdabac3436921bd964cd72cdbe2b9f4b6f7ef3035a5b8c1587c02dc : update_package.py