AnyDesk
Silent install package for AnyDesk
9.6.11.0-16
Utilities
Utilities
- package: tis-anydesk
- name: AnyDesk
- version: 9.6.11.0-16
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Bertrand Lemoigne,Gaëtan Segat,Jimmy PELÉ,Clément BAZIRET
- editor: AnyDesk Software GmbH
- licence: proprietary_free,wapt_public
- locale: all
- target_os: windows
- impacted_process: AnyDesk
- architecture: all
- signature_date:
- size: 8.03 Mo
- installed_size: 4.04 Mo
- homepage : https://anydesk.com
package : tis-anydesk
version : 9.6.11.0-16
architecture : all
section : base
priority : optional
name : AnyDesk
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Bertrand Lemoigne,Gaëtan Segat,Jimmy PELÉ,Clément BAZIRET
description : AnyDesk is a remote desktop application distributed by AnyDesk Software GmbH. The proprietary software provides platform-independent remote access to personal computers and other devices running the host application
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : https://anydesk.com/downloads
installed_size : 4038720
impacted_process : AnyDesk
description_fr : AnyDesk est une application de bureau à distance distribuée par AnyDesk Software GmbH. Le logiciel propriétaire fournit un accès à distance indépendant de la plate-forme aux ordinateurs personnels et autres appareils exécutant l'application hôte
description_pl : AnyDesk to aplikacja zdalnego pulpitu dystrybuowana przez AnyDesk Software GmbH. To autorskie oprogramowanie zapewnia niezależny od platformy zdalny dostęp do komputerów osobistych i innych urządzeń z uruchomioną aplikacją hosta
description_de : AnyDesk ist eine Remote-Desktop-Anwendung, die von der AnyDesk Software GmbH vertrieben wird. Die proprietäre Software bietet einen plattformunabhängigen Fernzugriff auf Personalcomputer und andere Geräte, auf denen die Host-Anwendung läuft
description_es : AnyDesk es una aplicación de escritorio remoto distribuida por AnyDesk Software GmbH. El software propietario proporciona acceso remoto independiente de la plataforma a ordenadores personales y otros dispositivos que ejecutan la aplicación host
description_pt : AnyDesk é uma aplicação de ambiente de trabalho remoto distribuída pela AnyDesk Software GmbH. O software proprietário fornece acesso remoto independente de plataforma a computadores pessoais e outros dispositivos que executam a aplicação anfitriã
description_it : AnyDesk è un'applicazione di desktop remoto distribuita da AnyDesk Software GmbH. Il software proprietario fornisce accesso remoto indipendente dalla piattaforma a personal computer e altri dispositivi che eseguono l'applicazione host
description_nl : AnyDesk is een toepassing voor bureaublad op afstand, gedistribueerd door AnyDesk Software GmbH. De bedrijfseigen software biedt platformonafhankelijke toegang op afstand tot pc's en andere apparaten waarop de hosttoepassing wordt uitgevoerd
description_ru : AnyDesk - приложение для удаленного рабочего стола, распространяемое компанией AnyDesk Software GmbH. Проприетарное программное обеспечение обеспечивает платформонезависимый удаленный доступ к персональным компьютерам и другим устройствам, на которых установлено хост-приложение
audit_schedule :
editor : AnyDesk Software GmbH
keywords : anydesk,remote,desktop,application,remote,access,personal,computers,computer
licence : proprietary_free,wapt_public
homepage : https://anydesk.com
package_uuid : a8df6de2-ef88-42f0-8680-874b81d5952b
valid_from :
valid_until :
forced_install_on :
changelog : https://download.anydesk.com/changelog.txt
min_os_version :
max_os_version :
icon_sha256sum : 61e27edac9e3eeb15cdea6114a0bc2f09a150e39add65fde398c03cd322aab0e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-02-18T10:11:42.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 : hRPm8T05inLCS1IuVozU4skRPMy+RRdmpBUB7AGxYdvZ8iCWWmLsFS9OSO2OeZm7T/cF7S5Z9uU3CEf7BgEdlev6fKEOCwngrd/q4T2OqxVH0c3jG3A/sbaZpO6sOTlUxwKAUaJs4B9lOwEgBke/ibSm6wwrmwnmz/b5oOzJFOJv+qS7J4SwKhHOwIDyoSpslV89WW7t4+H1lWFElgqgOdbrJB+J7DMLuq+HkR4B1qAtxnspXwlQEV0YAi9sSeOSr1xORf153l7Z+t3XFeLCHnWZBry7J9z0ve3SKSKuawtG2jtMGE3Y26ho/+C2mFVWNjfVHoqXRbR2Q0Uw88xCZQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
import time
# Installation procedures:
# https://support.anydesk.com/knowledge/use-cases-for-the-command-line-interface
# https://support.anydesk.com/knowledge/command-line-interface-for-windows
# You are free to comment/uncomment `install_options` to personnalize installation
app_name = "AnyDesk"
app_dir = makepath(programfiles32, app_name)
app_path = makepath(app_dir, "AnyDesk.exe")
install_options = [
f'--install "{app_dir}"',
# "--start-with-win",
"--create-shortcuts",
"--create-desktop-icon",
"--remove-first",
"--silent",
# "--update-manually",
"--update-disabled",
# "--update-auto",
]
app_uninstallkey = "AnyDesk"
def get_soft_version(key):
return key["version"].split(" ")[-1]
def install():
bin_name = glob.glob("AnyDesk*.exe")[0]
install_exe_if_needed(
bin_name,
silentflags=" ".join(install_options),
key=app_uninstallkey,
min_version=control.get_software_version(),
get_version=get_soft_version,
)
# Creating shortcuts manually since the installer is unable to...
if "--create-shortcuts" in install_options:
create_programs_menu_shortcut(app_name, app_path)
if "--create-desktop-icon" in install_options:
create_desktop_shortcut(app_name, app_path)
# Adding QuietUninstallString
register_uninstall(app_uninstallkey, quiet_uninstall_string='"%s" --silent --remove' % app_path)
# Changing default start mode of the application services
killalltasks(control.get_impacted_process_list())
try:
run(f'"{app_path}" --stop-service')
except:
time.sleep(60)
run_notfatal(f'"{app_path}" --stop-service')
# Changing default service start mode of the application
if control.package.startswith('tis-'):
set_service_start_mode("AnyDesk", "Manual")
def session_setup():
remove_user_desktop_shortcut(app_name)
def uninstall():
# Remove remaining files
remove_desktop_shortcut(app_name)
remove_programs_menu_shortcut(app_name)
if isdir(app_dir):
killalltasks(ensure_list(control.impacted_process))
if not installed_softwares(app_uninstallkey):
try:
remove_tree(app_dir)
except:
print(f"Unable to remove: {app_dir}")
print(f"{app_dir} remains")
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
latest_bin = "AnyDesk.exe"
download_url = "https://download.anydesk.com/AnyDesk.exe"
remove_outdated_binaries("*")
if not isfile(latest_bin):
print("Téléchargement", latest_bin)
wget(download_url, latest_bin, proxies=proxies)
version = get_file_properties(latest_bin)["FileVersion"]
print(f"Version: {version}")
if Version(version) > Version(control.get_software_version()):
control.set_software_version(version)
control.save_control_to_wapt()
print("Package mis à jour")
return True
print("Version à jour")
return False
bfc1675ee1e358db8356f515aaded7962923e426aa0a0a1c0eddfc4dab053f89 : AnyDesk.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
fc04b368ac505da9b49ea1af4002909afca91b874cfd348c9d4e68ebc209ae02 : WAPT/changelog.txt
cbad1fbb8b017c169743d444f91e4a86aa067947f0c869048ba12b3810c189cb : WAPT/control
61e27edac9e3eeb15cdea6114a0bc2f09a150e39add65fde398c03cd322aab0e : WAPT/icon.png
0bca655a5705d090307430a46f90ba94c4e459668f3e1284b8c25bef6887d01b : luti.json
c4afe9a637248d1301681c3999b4359cc5068db2d3882c6547bf1eb58773ce54 : setup.py
f673b8cf285f6e588adcacc3609f3a7bf3ba58430e948f8c7c37416d3a115151 : update_package.py
https://download.anydesk.com/changelog.txt
7.1.11.0-12
===
- Creating shortcuts manually since the installer is unable to...
- Simplifying update_package
- Improving all aspects of the package
- No longer start-with-win by default
- stop-service after install