
Remote Desktop
Silent install package for Remote Desktop
1.2.6278.0-2
- package: tis-azure-virtual-desktop
- name: Remote Desktop
- version: 1.2.6278.0-2
- maintainer: Amel FRADJ
- licence: MICROSOFT SOFTWARE LICENSE TERMS
- target_os: windows
- impacted_process: msrdcw
- architecture: x64
- signature_date:
- size: 34.89 Mo
- homepage : https://learn.microsoft.com/en-us/azure/virtual-desktop/whats-new-client-windows?pivots=remote-desktop-msi
package : tis-azure-virtual-desktop
version : 1.2.6278.0-2
architecture : x64
section : base
priority : optional
name : Remote Desktop
categories :
maintainer : Amel FRADJ
description : Utilisez le client des services Bureau à distance (MSRDC) pour accéder à distance aux applications et aux bureaux Windows à partir d'un autre appareil Windows.
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process : msrdcw
description_fr : Azure Virtual Desktop, ou AVD, est une plateforme basée sur le cloud qui permet au personnel autorisé d'accéder à un bureau VA standardisé
description_pl : Azure Virtual Desktop (AVD) to oparta na chmurze platforma, która umożliwia autoryzowanemu personelowi dostęp do ustandaryzowanego pulpitu VA
description_de : Azure Virtual Desktop (AVD) ist eine Cloud-basierte Plattform, die autorisierten Mitarbeitern den Zugriff auf einen standardisierten VA-Desktop ermöglicht
description_es : Azure Virtual Desktop, o AVD, es una plataforma basada en la nube que permite al personal autorizado acceder a un escritorio VA estandarizado
description_pt : O Ambiente de Trabalho Virtual do Azure, ou AVD, é uma plataforma baseada na nuvem que permite ao pessoal autorizado aceder a um ambiente de trabalho VA normalizado
description_it : Azure Virtual Desktop, o AVD, è una piattaforma basata sul cloud che consente al personale autorizzato di accedere a un desktop VA standardizzato
description_nl : Azure Virtual Desktop, of AVD, is een cloud-gebaseerd platform dat geautoriseerd personeel toegang geeft tot een gestandaardiseerde VA desktop
description_ru : Azure Virtual Desktop, или AVD, - это облачная платформа, позволяющая авторизованному персоналу получить доступ к стандартизированному рабочему столу VA
audit_schedule :
editor :
keywords :
licence : MICROSOFT SOFTWARE LICENSE TERMS
homepage : https://learn.microsoft.com/en-us/azure/virtual-desktop/whats-new-client-windows?pivots=remote-desktop-msi
package_uuid : 41f551c4-635e-4d21-8635-3cc335d0bf75
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 0cf0e523c330c77b83905f570d8251cb2d5de824d092dec7064d579918d98441
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-16T07:01:20.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 : ibjWDp46qzykoYujQluczQmPJqDFJ5Y16+qophUU+A5BDdAd5oUC9jtqSa0a+kG4lxdUS0/As8vr2mD3z50nMhNiVH1pgjCgOlG4CQny9wo00ef/fZ+oqzGD8nLhtwAG+Opt5sXccPhXQcaJRm/6jxg1F3KIeEj55lsL8zFAdP6nPWdhaxiAm7ZSQOBNKF7VjrJT/3sI21dzue1Be1G/fPIVuCgg/RR/I9sDtPQ4FrS4IkXK/LR1AsNuf8Gj2DqTkmDs8fQPIFkHvX8M3m3N30lFJYXtkt228XC1TAjpTBq6J5zCAy0/YJaPrDbw5aR8MQ6cIva3e0Zg4mqNyiSahQ==
# -*- 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
bin_test = makepath(programfiles(),'Remote Desktop','msrdc.exe')
def install():
# Declaring local variables
bin_name = glob.glob('RemoteDesktop_*_x64.msi')[0]
# Installing the software
if Version(get_version_rd()) < Version(control.get_software_version()) or force:
run(r'"%s" /norestart /q /i "%s"' % (makepath(system32(),'msiexec.exe'), bin_name), accept_returncodes=[0, 3010], timeout=300)
if Version(get_version_rd()) < Version(control.get_software_version()):
error('"%s" missmatch version : %s != %s' % (bin_test,get_version_rd(),control.get_software_version()))
#append uninstallkey
for soft in installed_softwares():
if soft['install_location'].lower().strip('\\') == makepath(programfiles(),'Remote Desktop').lower():
uninstallkey.append(soft['key'])
def get_version_rd():
return get_file_properties(bin_test)['ProductVersion'] if isfile(bin_test) else '0'
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests
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
url_base = "https://learn.microsoft.com/en-us/azure/virtual-desktop/whats-new-client-windows?pivots=remote-desktop-msi"
table = bs_find_all(url_base, "table", proxies=proxies)
rows = bs_find(table, "tbody").find_all('tr')
for row in rows:
tds = row.find_all("td")
release_type = tds[0].text
# If is the Public Windows 64-bit release
if release_type == "Public":
microsoft_url = next((a["href"] for a in tds[2].find_all("a") if "Windows 64-bit" in a.text), None)
download_url = requests.head(microsoft_url, proxies=proxies).headers['Location']
latest_bin = download_url.rsplit('/', 1)[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
version = latest_bin.split('_')[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}")
# 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
1531314459b1c1e8f80f6bd90369dda3c12e6928278e86b59f5ea3f82d93df36 : RemoteDesktop_1.2.6278.0_x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9385cb79e945e84248a4bec45372e7cc73648f80a534aba99deccab8c60b1ee8 : WAPT/control
0cf0e523c330c77b83905f570d8251cb2d5de824d092dec7064d579918d98441 : WAPT/icon.png
dea0dbb9a063b6bf9dc08574efc66cd13a8cd0c10349f30123ca1486e34c6ec0 : luti.json
9ee2e839880c68c2b07ac86c41d657601c6aaa849e6a1a0b4f622bb22b70e587 : setup.py
849e9ee5b961c0d21cde6e44888e8ab14cd343bf49e34726274826f742671ca6 : update_package.py