
- package: tis-rsat
- name: RSAT
- version: 2.0-5
- categories: Utilities,System and network
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Microsoft
- licence: wapt_public
- locale: all
- target_os: windows
- architecture: x64
- signature_date:
- size: 177.92 Mo
- homepage : https://learn.microsoft.com/windows-server/remote/remote-server-administration-tools
package : tis-rsat
version : 2.0-5
architecture : x64
section : base
priority : optional
name : RSAT
categories : Utilities,System and network
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : The Remote Server Administration Tools (RSAT) is a set of remote administration tools that enable efficient management of Windows servers from a workstation
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : MVLSC
installed_size :
impacted_process :
description_fr : Les Outils d'administration de serveur distant (RSAT) est un ensemble d'outils d'administration à distance permettant de gérer les serveurs Windows à partir d'un poste de travail
description_pl : Remote Server Administration Tools (RSAT) to zestaw narzędzi do zdalnej administracji, które umożliwiają wydajne zarządzanie serwerami Windows ze stacji roboczej
description_de : Die Remote Server Administration Tools (RSAT) sind eine Reihe von Remote-Verwaltungstools, die eine effiziente Verwaltung von Windows-Servern von einer Workstation aus ermöglichen
description_es : Las Herramientas de administración remota de servidores (RSAT) son un conjunto de herramientas de administración remota que permiten una gestión eficaz de los servidores Windows desde una estación de trabajo
description_pt : As Ferramentas de Administração Remota do Servidor (RSAT) são um conjunto de ferramentas de administração remota que permitem a gestão eficiente de servidores Windows a partir de uma estação de trabalho
description_it : Remote Server Administration Tools (RSAT) è un insieme di strumenti di amministrazione remota che consentono di gestire in modo efficiente i server Windows da una stazione di lavoro
description_nl : De Remote Server Administration Tools (RSAT) is een set hulpprogramma's voor beheer op afstand waarmee Windows-servers efficiënt kunnen worden beheerd vanaf een werkstation
description_ru : Remote Server Administration Tools (RSAT) - это набор инструментов удаленного администрирования, которые позволяют эффективно управлять серверами Windows с рабочей станции
audit_schedule :
editor : Microsoft
keywords : windows,server,rsat,remote,administration,tools
licence : wapt_public
homepage : https://learn.microsoft.com/windows-server/remote/remote-server-administration-tools
package_uuid : ca22ccdd-01e4-4401-a0de-1bea51bb74fb
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.2
max_os_version : 6.4
icon_sha256sum : 4a5dca5829cfca39f879e051a117fdb5c41a72bf26bee9b87cd78c45fdb5f141
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-23T11:00:22.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 : cCclwG5co/PAHOKpClaxUwklWX4U7YTOPJhiTS75gR8ejT3mekZi+3kxuv9HE2IZWPLhfGCipIVMfnZ0sWnmSDlmma1bwtwYaCrh24uAo14cixLQxBHL8f9Yk3icyxADs6VDaU0PKQiFBthDuUERx6kMCLSkHwTPEfJJFKJVyia3WONq9gaL2s+zQGHq57pPSgi9j04WJAZxXKL7bqxC9WhbbCtxWyOZPD8xtq38DkvP2au5G88+bZMrZ+CiScuPZ3AM8mvWmG9JJ5Q1jh0/aT6CcHMppYENH1FQi3XQZZzhAYoOA+1BxjQVqPYA6I0noPZPD8KG4jNhD6zwBTVZ9A==
# -*- coding: utf-8 -*-
from setuphelpers import *
from subprocess import CalledProcessError
# Declaring specific app values (TO CHANGE)
bin_name_63 = "Windows8.1-KB2693643-x64.msu"
bin_name_62 = "Windows6.2-KB2693643-x64.msu"
def install():
# Getting the used storage on programfiles before installation (place it on the top)
get_disk_free_space_before = get_disk_free_space(programfiles)
# Installing the package
if windows_version() >= "6.2" and windows_version() < "6.2.9999":
with EnsureWUAUServRunning():
try:
run(r'wusa.exe "%s" /quiet /norestart' % bin_name_62)
except CalledProcessError as e:
if e.returncode == 2359302:
pass
elif windows_version() >= "6.3" and windows_version() < "6.3.9999":
with EnsureWUAUServRunning():
try:
run(r'wusa.exe "%s" /quiet /norestart' % bin_name_63)
except CalledProcessError as e:
if e.returncode == 2359302:
pass
else:
print("This Windows version is not compatible with this package")
pass
print("Activating features")
print("AD")
features = [
"RemoteServerAdministrationTools",
"RemoteServerAdministrationTools-Roles",
"RemoteServerAdministrationTools-Roles-AD",
]
run(r"c:\windows\sysnative\dism.exe /online /enable-feature %s" % " ".join(["/featurename:%s" % f for f in features]))
print("AD-DS")
features = ["RemoteServerAdministrationTools-Roles-AD-DS"]
run(r"c:\windows\sysnative\dism.exe /online /enable-feature %s" % " ".join(["/featurename:%s" % f for f in features]))
print("AD-DS-Snapins")
features = ["RemoteServerAdministrationTools-Roles-AD-DS-SnapIns"]
run(r"c:\windows\sysnative\dism.exe /online /enable-feature %s" % " ".join(["/featurename:%s" % f for f in features]))
print("DNS")
features = [
"RemoteServerAdministrationTools-Roles-DNS",
]
run(r"c:\windows\sysnative\dism.exe /online /enable-feature %s" % " ".join(["/featurename:%s" % f for f in features]))
print("GP")
features = [
"RemoteServerAdministrationTools-Features",
"RemoteServerAdministrationTools-Features-GP",
]
run(r"c:\windows\sysnative\dism.exe /online /enable-feature %s" % " ".join(["/featurename:%s" % f for f in features]))
# Return used storage of the program. (place it on the bottom)
get_disk_free_space_after = get_disk_free_space(programfiles)
free_space_after_diff = get_disk_free_space_before - get_disk_free_space_after
print("Storage used: " + str(free_space_after_diff))
def uninstall():
with EnsureWUAUServRunning():
run("wusa.exe /uninstall /kb:2693643 /quiet /norestart")
# -*- coding: utf-8 -*-
from setuphelpers import *
from subprocess import CalledProcessError
# Declaring specific app values (TO CHANGE)
bin_name_63 = "Windows8.1-KB2693643-x64.msu"
bin_name_62 = "Windows6.2-KB2693643-x64.msu"
url_dl_63 = "https://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/Windows8.1-KB2693643-x64.msu"
url_dl_62 = "https://download.microsoft.com/download/4/3/F/43FAC524-F605-426E-A2AE-EAD03D264FDE/Windows6.2-KB2693643-x64.msu"
def update_package():
print("Download/Update package content from upstream binary sources")
# Getting proxy informations from WAPT settings
proxy = {}
if isfile(makepath(application_data(), "waptconsole", "waptconsole.ini")):
proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
if proxywapt:
proxy = {"http": proxywapt, "https": proxywapt}
# Downloading latest binaries
if not isfile(bin_name_63):
print("Downloading: " + bin_name_63)
wget(url_dl_63, bin_name_63, proxies=proxy)
print("Update package done. You can now build-upload your package")
if not isfile(bin_name_62):
print("Downloading: " + bin_name_62)
wget(url_dl_62, bin_name_62, proxies=proxy)
print("Update package done. You can now build-upload your package")
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5e4de492aadc7330f6c45ab6c9717ea7a68ebf33724c08b7ac46b580504d8b28 : WAPT/control
4a5dca5829cfca39f879e051a117fdb5c41a72bf26bee9b87cd78c45fdb5f141 : WAPT/icon.png
9799352c104d56a3bb7e5f931dadb4aa3361fce3d41be23699787a23347f207a : Windows6.2-KB2693643-x64.msu
dea5540a59e018e04e088afb2aa326fb690d27a983fd3cbffefbfcfdde20a47d : Windows8.1-KB2693643-x64.msu
eda177d5afa48ce73b78ebc6d6b8704b1f48a7ff08380d2db95d280aba14ca07 : luti.json
23a0bd562b112a2e4e5946e01f1fc4778c7d654889bfc67ecc611417befecf74 : setup.py
7f229d9f87ea1735ed9d5d4bc65b3dfd6eedfcf5e4b65775feb5a09264e429e5 : update_package.py