tis-dell-display-peripheral-manager icon

Dell Display and Peripheral Manager

Paquet d’installation silencieuse pour Dell Display and Peripheral Manager

2.1.1.12-1

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

package           : tis-dell-display-peripheral-manager
version           : 2.1.1.12-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      : c32dc186-9934-4948-b3a9-f76dcc1592b3
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-09-02T05:01:06.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         : ZTe0E9MQ04dU57Pzai5GOII630Ast/qCtAfq0nOlf8DUcgqKvDB4oeVlWcA/PQJDCX1ilHWt4uuEFFDqtYy7z3I1wszXPNM0FVPA4vjsY0b/0t8QCdAFCfGLLhZ1PzNaaB7pnZqrhZU2e6Slh000ZtBPM7otY2h7dUuxf3WNs4wW+kHmN0ndVIys8WJXv5YSPz111AVKo1Gi72rWwKAjRz/L588Kilh70vO6yz1bzJH5THzHr/4N5A3hQz0Dvjedbzv7EnCdOReKTBKw6my1f7sakvSetZJxKUlDbMglbSBS+XkPzMgUKaU0ARFsWchWBQbDRC6wwrCmr5tTxHFkPA==

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

39c18803234f1317e2f841a8395c4883067d479ce68e24b797cf014421a21857 : DDPM-Setup_2.1.1.12.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5ce233030efcaf717045a7bb04393763b054d766b40ebedd81dc211580956dbd : WAPT/control
5ff4b8e68898514197289df70be5cd63db5ff281391dc99635999b3743b06ac6 : WAPT/icon.png
2b0ec5970b0fb268d6bd7376de96523764db8e9268d06b082fa01767f56112f9 : luti.json
de390e34699a11370dc6989e9c8218f50ab7ee563936ca1eccf37d17c28d210f : setup.py
7b73dd8f234a8bd9fec5a72e1f655d5ecf86680439e3be75ebb10205495ae89e : update_package.py