
Dell Display and Peripheral Manager
Paquet d’installation silencieuse pour Dell Display and Peripheral Manager
2.1.0.24-1
- package: tis-dell-display-peripheral-manager
- name: Dell Display and Peripheral Manager
- version: 2.1.0.24-1
- 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
- signature_date:
- size: 764.67 Mo
- installed_size: 46.62 Mo
package : tis-dell-display-peripheral-manager
version : 2.1.0.24-1
architecture : x64
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 : 0b4d3530-d12f-4fc9-b4fb-0c4db4c8f477
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-07-27T13:01:11.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 : kYkqOmOTT96urV739+vEuw/TERt++ATvbFqND7p4bgZkYNt1NsM9uhl8Gh3S4uzJRnFZgIlz1IpcMPgswlh8PhE/+Z9Wn3UQmxeZKF1EGF/rOxIiaIEoRaIyFb4mrHochdR0OrdvlBiXqeGqeCHCNg9T6H8ye/UtptMb6Ln6sfQIdVU+XTVQz1wuNuKeTRt9/zIWmVDUOZ1ztsXJG5NbIXnlTUiV+l7b3NGKIeCotOHKWdl6LhoGiAE8W7UaW9QUqB6Su9MKnwQMppsuYIY/7evzuY3RV6wFvQQ+VflQuvnuE5603EFkpZa7qsjtD6NWZAO65x1dlBwEj564v6ojQg==
# -*- 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 *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
url_base = "https://wingetgui.com/apps/Dell-DisplayAndPeripheralManager"
print("URL used is: %s" % url_base)
# Getting the download page link
link = bs_find(url_base, 'h3', proxies=proxies).find_next_sibling()
link = link.find_next("a")
exe_file = None
if link['href'].endswith('.exe'):
href = link['href']
download_url = href
latest_bin = href.split('/')[-1]
version = bs_find(url_base, "h3", proxies=proxies).text.split("Download Links For Version ")[-1]
# Downloading latest binaries
print("Latest %s version is: %s" % (control.name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s %s" % (latest_bin, version))
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
print(
"Changing version to the version number of the binary (from: %s to: %s)"
% (version, version_from_file)
)
# os.rename(latest_bin, latest_bin.replace(version, version_from_file))
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
print(
"Software version updated (from: %s to: %s)"
% (control.get_software_version(), Version(version))
)
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Validating or not update-package-sources
return package_updated
# # Changing version of the package and validating update-package-sources
# return complete_control_version(control, version)
072ffc34eb61e6474516e6ef4d17d3d39a25abbf07ba29fec898862bed1ac5d1 : DDPM-Setup_2.1.0.24.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a89058143f6cc1cb0ce7abc2ab1880a580eefe28c5a2034e03a8ef7ffb94fe70 : WAPT/control
5ff4b8e68898514197289df70be5cd63db5ff281391dc99635999b3743b06ac6 : WAPT/icon.png
2c48bb69920178891824b6086002788391ed7a49c8229772035e8d537b122b20 : luti.json
de390e34699a11370dc6989e9c8218f50ab7ee563936ca1eccf37d17c28d210f : setup.py
7b73dd8f234a8bd9fec5a72e1f655d5ecf86680439e3be75ebb10205495ae89e : update_package.py