Intel Driver & Support Assistant
Silent install package for Intel Driver & Support Assistant
26.1.0.2-13
System and network
System and network
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-intel-dsa
- name: Intel Driver & Support Assistant
- version: 26.1.0.2-13
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- locale: all
- target_os: windows
- impacted_process: DSAService,DSAServiceHelper,DSATray,DSAUpdateService
- architecture: x64
- signature_date:
- size: 8.28 Mo
- depends:
package : tis-intel-dsa
version : 26.1.0.2-13
architecture : x64
section : base
priority : optional
name : Intel Driver & Support Assistant
categories : System and network
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Intel Driver & Support Assistant
depends : tis-dotnetfx
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.1
sources : https://downloadcenter.intel.com/download/28425/Intel-Driver-Support-Assistant
installed_size :
impacted_process : DSAService,DSAServiceHelper,DSATray,DSAUpdateService
description_fr : Assistant pilote et support Intel
description_pl : Intel Driver & Support Assistant
description_de : Intel Treiber & Support Assistent
description_es : Asistente de soporte y controladores Intel
description_pt : Motorista e assistente de suporte Intel
description_it : Assistente driver e supporto Intel
description_nl : Intel stuurprogramma en ondersteuningsassistent
description_ru : Intel Driver & Support Assistant
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : 419ba9d1-afdf-4025-b7bc-fc4519f7785e
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 588d2c5a22eca838bb1f20a6ed34c63cbf047b298c2d519bc337a73be41d65a9
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-31T16:58:49.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 : HS6tR3CaLIULehEglqy5m6Xfot7fCFde8JxA+SNW2qMINgLCRAf9J2889Wplhq8by/OcxpjoPJYvIBw6luYSmOu2mu9g0oL+bUUC/txFSc3NBDLxgTDtlHg/jNSJnvTV4phCHepuYoal1TpuhQ02ouOMn8Ed8LYnOfsrENmK1JcDBctDRl/0CjnsJ9IBtz9u/mfbLwm62R+omd8LPyHS888GA9GIMtXFDowE7I5lg2lXP60trrBE3FFwxK7HvIJa7bfeVoVZ4STSmXcz2P/fwlGj/+MS096Vb9H1tN1sIlHxShRzOrmk83jliHi+s1e9dlEilWtgBMq3t+Zphb1eQg==
# -*- coding: utf-8 -*-
from setuphelpers import *
import bs4 as BeautifulSoup
def install():
# Declaring local variables
bin_name = glob.glob("*Intel-Driver-and-Support-Assistant-Installer*.exe")[0]
# Uninstalling the software on forced install
for uninstall in installed_softwares("Intel Driver & Support Assistant"):
if force:
for uninstall in installed_softwares(name="Intel® Driver & Support Assistant"):
print("Uninstalling: %s" % uninstall["name"])
run(uninstall_cmd(uninstall["key"]))
break
# Installing the software
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="-s -norestart",
# key=app_uninstallkey,
min_version=control.get_software_version(),
keywords="Intel Driver & Support Assistant",
)
# Disabling auto-update check and telemetry and autorun
registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Intel\Driver and Support Assistant\Settings", "NotificationFrequency", "0")
registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Intel\SUR\ICIP", "Consent", 0)
registry_delete(HKEY_LOCAL_MACHINE, r"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run", "Intel Driver & Support Assistant")
def uninstall():
# Uninstalling the software
for uninstall in installed_softwares(name="Intel® Driver & Support Assistant"):
print("Uninstalling: %s" % uninstall["name"])
run(uninstall_cmd(uninstall["key"]))
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
binn = "Intel-Driver-and-Support-Assistant-Installer.exe"
url_dl = "https://dsadata.intel.com/installer"
print("Download url is: %s" % url_dl)
wget(url_dl, binn, proxies=proxies)
version = get_version_from_binary(binn)
# Changing version of the package
if Version(version) != Version(control.get_software_version()):
result = True
control.set_software_version(version)
control.save_control_to_wapt()
# Validating update-package-sources
return result
d6edb02027c4800f247b1658959272c720b007685fe093ffa899d6e9b06342b1 : Intel-Driver-and-Support-Assistant-Installer.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
8a34fc565588511ee2f45443a351cf252fa72fb019ab78e3e885832ae44602a1 : WAPT/control
588d2c5a22eca838bb1f20a6ed34c63cbf047b298c2d519bc337a73be41d65a9 : WAPT/icon.png
6bff76c0f6ee5b5af7280628b80af5c048c6ddeb7869b3af83facd17cc621ea0 : luti.json
f9ecea88506d6030a2283fe8ae3c2f26bcb8dd82cf47fdeaf047f610f9304041 : setup.py
32c33757eab256f2c2005187e32e48cfc5be35bc3e2d58c1b4c03cb42f91b7cb : update_package.py