tis-dell-display-peripheral-manager icon

Dell Display and Peripheral Manager

Paquet d’installation silencieuse pour Dell Display and Peripheral Manager

2.1.2.12-2
Utilities
Utilities

  • package: tis-dell-display-peripheral-manager
  • name: Dell Display and Peripheral Manager
  • version: 2.1.2.12-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: 495.09 Mo
  • installed_size: 46.62 Mo

package           : tis-dell-display-peripheral-manager
version           : 2.1.2.12-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      : 513ac75b-e36e-4dfd-a0ac-241cd9317213
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-11-24T10:05:58.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         : Zu6iFjyVzAYw0ign+A1GqR1Q5qUgNeikQufwzMG4JHtzMlcfQCUOjP5y3vA9AAZR/Oy5ryxeE18bzAh3H5pTIB9eW3OTZhuvpUILpHPZu3nON2Zbbzdakh0BU7NPUtP/8P6hfzkkMpAezE+UYJIPM7bR0OVxrpKshc5zUgMofo8XJUYoHHBm9ek82TPwKhazhPeippKaksaF660om/vchQC0YFqLEMWMrrIozexoqUVvIAaLGIOqcgkwYDfDCHchdE92JZQRZrK4Y3akEIHTp3y1EoG/SewS+FA1n0YwB/rMlnw4jKYPxL24bANkEQAONZeVqnq0tDACuLYA9J1vtA==

# -*- 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

36c2b20a8eb30cc18d81a8b2fc164d6e7c40d758a638f3555bfc14dfd654dd0d : DDPM-Setup_2.1.2.12.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
05e69ead5f5e586462208ebed81f16e5b147e62ed78a1d69edf7adfb06abe47a : WAPT/control
5ff4b8e68898514197289df70be5cd63db5ff281391dc99635999b3743b06ac6 : WAPT/icon.png
45be1d67a00e713b1a6daf71c574ac72a041d9421d78775b182bbecfd03cd6cc : luti.json
de390e34699a11370dc6989e9c8218f50ab7ee563936ca1eccf37d17c28d210f : setup.py
1c1c73cddfdabac3436921bd964cd72cdbe2b9f4b6f7ef3035a5b8c1587c02dc : update_package.py