Rsat windows 11 x64 download

Набор компонентов RSAT (Remote Server Administration Tools / Средства удаленного администрирования сервера) позволяет удаленно управлять ролями и компонентами на серверах Windows Server с обычной рабочей станции Windows. В RSAT входят графические MMC оснастки, утилиты командной строки, и модули PowerShell. Вы можете установить RSAT как на десктопных версиях Windows 10 или 11, так и в Windows Server 2022/2019/2016.

Содержание:

  • Установка средств администрирования RSAT в Windows 10 и 11
  • Установка RSAT в Windows с помощью PowerShell
  • Как установить Remote Server Administration Tools в Windows Server 2022,2019,2016?
  • Ошибка 0x800f0954 при установке RSAT в Windows
  • Установка RSAT в Windows в офлайн режиме

Установка средств администрирования RSAT в Windows 10 и 11

В Windows 10 и 11 RSAT устанавливаются через графический интерфейс панели Settings -> Apps -> Optionla Features -> Add an optional feature (Параметры Windows -> Приложения -> Дополнительные возможности -> Добавить компонент).

установка Remote Server Administration Tools в windows 10 через optional features

Наберите в поисковой строке RSAT, чтобы вывести доступные компоненты. Вы можете установить в Windows 10/11 следующие инструменты администрирования RSAT:

  • RSAT: Active Directory Domain Services and Lightweight Directory Services Tools
  • RSAT: BitLocker Drive Encryption Administration Utilities
  • RSAT: Active Directory Certificate Services Tools
  • RSAT: DHCP Server Tools (настройка и управление DHCP сервером на Windows Server)
  • RSAT: DNS Server Tools
  • RSAT: Failover Clustering Tools
  • RSAT: File Services Tools
  • RSAT: Group Policy Management Tools – консоль управления GPO и PowerShell модуль GroupPolicy
  • RSAT: IP Address Management (IPAM) Client
  • RSAT: Data Center Bridging LLDP Tools
  • RSAT: Network Controller Management Tools
  • RSAT: Network Load Balancing Tools
  • RSAT: Remote Access Management Tools
  • RSAT: Remote Desktop Services Tools
  • RSAT: Server Manager
  • RSAT: Shielded VM Tools
  • RSAT: Storage Migration Service Management Tools
  • RSAT: Storage Replica Module for Windows PowerShell
  • RSAT: System Insights Module for Windows PowerShell
  • RSAT: Volume Activation Tools (консоль активации KMS сервера)
  • RSAT: Windows Server Update Services Tools

Выберите нужные компоненты RSAT и нажмите Install.

Вы можете установить RSAT только Professional и Enterprise редакциях Windows 10/11, но не в Windows Home.

установить компоненты rsat в Windows онлайн

После установки некоторых компонентов RSAT может потребоваться перезагрузка.

Компоненты RSAT не включены в состав Windows, а поставляются в виде Функции по требованию (Features on Demand). Это значит, что для установки RSAT ваш компьютер должен быть подключен к интернету. Windows загрузит и установит необходимые файлы с серверов Microsoft Update.

В предыдущих версиях Windows (до билда Windows 10 1809) пакет удаленного администрирования серверов RSAT устанавливался в виде отдельного файла MSU обновления, которое нужно было вручную скачивать и установить с сайта Microsoft (https://www.microsoft.com/en-us/download/details.aspx?id=45520)

После установки пакета KB2693643 вы можете включить необходимые компоненты RSAT в разделе Control Panel -> Programs and Feature -> Turn Windows features on or off (
optionalfeatures.exe
). Разверните Remote Server Administration Tools и выберите необходимые компоненты для установки.

Включить компоненты RSAT в предыдущих версиях Windows

Если попытаться установить KB2693643 на более новых билдах Windows 10 или 11, появится ошибка:

Windows Update Standalone Installer encountered and error: 0x8024001d

После установки, графические mmc оснастки RSAT будут доступны в панели управления в секции Administrative Tools (Control Panel\System and Security\Administrative Tools) или в папке:
%ProgramData%\Microsoft\Windows\Start Menu\Programs\Administrative Tools
.

Запустить rsat из Administrative Tools

Установка RSAT в Windows с помощью PowerShell

Вы можете установить компоненты администрирования RSAT в Windows 10 и 11 с помощью PowerShell.

С помощью следующей PowerShell команды можно вывести список компонентов RSAT, установленных на вашем компьютере:

Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

В нашем примере инструменты управления DHCP и DNS установлены (
Installed
), а все остальные модуль RSAT отсутствуют (
NotPresent
).

Get-WindowsCapability вывести список установленных компонентов rsat с помощью powershell

Для установки RSAT в Windows используется PowerShell командлет Add-WindowsCapability.

Чтобы установить конкретный инструмент RSAT, например инструменты управления AD (в том числе консоль ADUC из модуля Active Directory для Windows Powershell), выполните команду:

Add-WindowsCapability –online –Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

Для установки консоли управления DNS и модуля PowerShell DNSServer, выполните:

Add-WindowsCapability –online –Name Rsat.Dns.Tools~~~~0.0.1.0

И т.д.

Add-WindowsCapability -Online -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0

Add-WindowsCapability -Online -Name Rsat.CertificateServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.DHCP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.FileServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.IPAM.Client.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.LLDP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkController.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.ServerManager.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.Shielded.VM.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageReplica.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.VolumeActivation.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.WSUS.Tools~~~~0.0.1.0

Чтобы установить сразу все доступные инструменты RSAT, выполните:

Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online

Также вы можете установить компоненты RSAT с помощью утилиты DISM:

DISM.exe /Online /add-capability /CapabilityName:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 /CapabilityName:Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0 /CapabilityName:Rsat.WSUS.Tools~~~~0.0.1.0

Чтобы установить только отсутствующие компоненты RSAT, выполните:

Get-WindowsCapability -Name RSAT* -Online | where State -EQ NotPresent | Add-WindowsCapability –Online

Add-WindowsCapability в Windows 10 1809 Rsat.LLDP.Tools

Теперь убедитесь, что инструменты RSAT установлены (статус Installed);

состояние компоеннтов RSAT

Как установить Remote Server Administration Tools в Windows Server 2022,2019,2016?

В Windows Server для установки RSAT не нужен доступ в интернет. Компоненты RSAT можно устанавливать при установке соответствующих ролей или фич Windows Server, либо можно установить их через Server Manager (Add roles and Features -> Features -> Remote Server Administration Tools). Все компоненты RSAT разбиты на две секции: Feature Administration Tools и Role Administration Tools. Выберите необходимые компоненты и нажмите Next -> Next.

windows server: установка RSAT через Server Manager

Для установки RSAT в Windows Server используется командлет установки компонентов и ролей — Install-WindowsFeature. Вывести список доступных компонентов RSAT в Windows Server 2022, 2019 и 2016:

Get-WindowsFeature| Where-Object {$_.name -like "*RSAT*"}| ft Name,Installstate

Для установки выбранного компонента RSAT, укажите его имя. Например, установим консоль диагностики лицензирования RDS:

Install-WindowsFeature RSAT-RDS-Licensing-Diagnosis-UI

windows server: установить компоненты rsat с помощью командлета powershell Install-WindowsFeature

Установить консоль удаленного управления Hyper-V Manager и PowerShell модуль Hyper-V:

Get-WindowsFeature | Where-Object {$_.Name -like "RSAT-Hyper-V-Tools"}| Install-WindowsFeature -IncludeAllSubFeature

Установленные графические консоли RSAT доступны из Server Manager или через панель управления.

Ошибка 0x800f0954 при установке RSAT в Windows

Если ваш компьютер Windows настроен на получение обновлений с локального сервера обновлений WSUS или SCCM (Configuration Manager) SUP, то при установке RSAT из графического интерфейса, Add-WindowsCapability или DISM вы получите ошибку.

Add-WindowsCapability ошибка установки rsat 0x800f0954

В этом случае Windows будет пытаться загрузить пакет RSAT с вашего локального сервера обновлений и вернет ошибку 0x800f0954:

Чтобы игнорировать локальный WSUS при установке дополнительных компонентов Windows и Features On Demand (в том числе RSAT) нужно настроить специальный параметр групповых политики:

  1. Откройте редактор локальной GPO –
    gpedit.msc
    или используйте доменную консоль управления GPO –
    gpmc.msc
    );
  2. Перейдите в раздел Computer Configuration -> Administrative Templates -> System;
  3. Включите политику Specify settings for optional component installation and component repair, и включите опцию Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS) (опция “Скачайте содержимое для восстановления и дополнительные компненты непосредственно из Центра обновления Windows вместо использования службы WSUS”);gpo: Specify settings for optional component installation and component repair
  4. Сохраните изменения и обновите настройки групповых политик (
    gpupdate /force
    ).
  5. Перезапустите службу Windows Update:
    net stop wuauserv
    net start wuauserv

Теперь установка RSAT через PowerShell или DISM должна выполняться без ошибок.

Некоторые параметры реестра могут блокировать подключение к Microsoft Update при получении компонентов RSAT. Если при установке RSAT появляется ошибка 0x8024002e, измените значения следующий параметров реестра в ветке
HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
:

  • DoNotConnectToWindowsUpdateInternetLocations = 0
  • DisableWindowsUpdateAccess = 0

Затем перезапустите службу wuauserv.

Установка RSAT в Windows в офлайн режиме

Если вы не можете открыть прямой доступ с рабочей станции к серверам Microsoft Update, вы можете воспользоваться офлайн установкой RSAT (рекомендуется для корпоративных сетей без прямого доступа в Интернет).

Windows 10 дополнительные возможности - Компоненты для установки отсутствуют

Для офлайн установки RSAT нужно скачать ISO образ диска с компонентами FoD для вашей версии Windows 10/11 с сайта Microsoft или из личного кабинета на сайте лицензирования Microsoft (Volume Licensing Service Center, VLSC):

  • Для Windows 10 2004 — https://learn.microsoft.com/en-us/azure/virtual-desktop/language-packs (FOD Disk 1 ISO)
  • Для Windows 11 21H2/22H2- https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-11-language-packs (Language and Optional Features ISO)

Например, для Windows 10 2004 x64 нужно скачать образ 19041.1.191206-1406.vb_release_amd64fre_FOD-PACKAGES_OEM_PT1_amd64fre_MULTI.iso (около 5 Гб). Распакуйте образ в сетевую папку. У вас получится набор *.cab файлов, среди которых есть компоненты RSAT.

Теперь для установки компонентов RSAT на рабочей станции Windows нужно указывать путь к данному сетевому каталогу с FoD в параметре -Source:

Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -LimitAccess -Source \\msk-fs01\Distr\Windows-FOD\Win101903x64\

Add-WindowsCapability установить компоненты rsat из сетевой папки

Также вы можете указать путь к каталогу с компонентами FoD с помощью указанной выше групповой политики. Для этого в параметре Alternative source file path нужно указать UNC путь к каталогу с файлами FoD.

windows 10 1903: настройки features on demand для установки RSAT через GPO

Или можете задать этот параметр через реестр отдельной политикой, указав путь к каталогу в параметр LocalSourcePath (тип REG_Expand_SZ) в ветке реестра HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Servicing.

После этого, пользователи смогут самостоятельно устанавливать компоненты RSAT через графический интерфейс добавления компонент Windows 10.

Частые ошибки установки Remote Server Administration Tools в Windows

  • 0x8024402c, 0x80072f8f – Windows не может поучить доступ к серверам обновления Windows для получения компонентов RSAT. Проверьте доступ в интернет или установите компоненты из локального образа FoD:
    Add-WindowsCapability -Online -Name Rsat.Dns.Tools~~~~0.0.1.0 -LimitAccess -Source E:\RSAT\
  • 0x800f081f – проверьте путь к каталогу с компонентами RSAT, указанному в параметре –Source;
  • 0x800f0950 – ошибка аналогична 0x800f0954;
  • 0x80070490 –проверьте целостность образа Windows с помощью DISM:
    DISM /Online /Cleanup-Image /RestoreHealth

Remote Server Administration Tools (RSAT) allow system administrators to manage Windows servers from their own computers without having to log in to each one individually. This makes network management very easy, especially when you have a large network of servers.

Microsoft releases RSAT tools separately for each Windows version. In Windows 10 version 1803 or earlier, users had to download RSAT tools and install them manually to enable it.

In Windows 10 version 1809 and later, Microsoft simplified the installation of RSAT tools. RSAT tools were integrated into the “optional features” section inside the Settings app. This is sufficient for the user to enable the RSAT components and Windows will automatically download, install, and enable them.

Now that Windows 11 has been released, let’s check how we can download, install and enable RSAT tools in Windows 11.

How to Install RSAT on Windows 11

Follow these steps to install RSAT tools on Windows 11:

  1. Navigate to:

    Settings app >> Apps >> Optional features
  2. Click “View features.”

    View optional features

    View optional features

    The “Add an optional feature” window will now open.

  3. Search for “RSAT.”

    Search for RSAT

    Search for “RSAT”
  4. Select the RSAT tools that you want to install and click Next.

    Select and install RSAT tools

    Select and install RSAT tools
  5. Confirm the components and click Install.

    Install RSAT tools in Windows 11

    Install RSAT tools in Windows 11

The RSAT tools will now begin downloading and installing on your PC. Once they are fully installed and ready to be used, they will be visible under the “Installed Features” section:

RSAT tools has been installed

RSAT tool has been installed

How to Install RSAT using PowerShell in Windows 11

For sysadmins who want advanced stuff, RSAT tools can also be installed using PowerShell. The beauty of using PowerShell is that you will be able to install RSAT tools even on remote computers.

To install all RSAT tools using PowerShell with Administrator privileges, run the following cmdlet in an elevated PowerShell instance:

Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online

To install a specific module, you’ll need to give the name of the module instead of the “*”.

First, list down all the available RSAT tools. Open PowerShell as an administrator and run the following command:

Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, State.

For example, here is the output when I run this command on my computer:

Get WindowsCapability command to list all rsat tools

Get WindowsCapability command to list all rsat tools
  1. Rsat.ActiveDirectory.DS-LDS.Tools Rsat.AzureStack.HCI.Management.Tools~~~~0.0.1.0
  2. Rsat.BitLocker.Recovery.Tools Rsat.CertificateServices.Tools Rsat.DHCP.Tools~~~~0.0.1.0
  3. Rsat.Dns.ToolsotPresent Rsat.FailoverCluster.Management.Tools Rsat.FileServices.Tools~~~~0.0.1.0
  4. Rsat.GroupPolicy.Management.Tools Rsat.IPAM.Client.Tools Rsat.LLDP.Tools~~~~0.0.1.0
  5. Rsat.NetworkController.Tools Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
  6. Rsat.RemoteAccess.Management.Tools Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
  7. Rsat.ServerManager.Tools Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
  8. Rsat.StorageReplica.Tools Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
  9. Rsat.VolumeActivation.Tools Rsat.WSUS.Tools~~~~0.0.1.0

Copy the name of the tool you want to install and run the command, such as follows:

Get-WindowsCapability -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0 -Online | Add-WindowsCapability -Online

In the above mentioned command, I’m installing the RSAT bitlocker module.

To install all the modules simultaneously, run the following command instead:

Get-WindowsCapability -Name Rsat* -Online | Add-WindowsCapability -Online

Installing all RSAT tools using PowerShell

Installing all RSAT tools using PowerShell

How to Run the Installed Remote Server Administration Tools on Windows 11

While Microsoft is making installing RSAT tools easier, it is certainly not easy to find where they have been installed and how to run them. You can search in Windows Search or in the Start Menu if you know the name of the tool. Or you should go to the following location:

Start Menu >> All apps >> Windows tools

This will open a folder where you will find all the RSAT tools installed on this computer. Double-click on any tool to run it.

RSAT Tools in Windows 11

Windows Tools directory

After running the tool, manage the respective component of different servers directly from your Windows PC.

Closing Thoughts

The Remote Server Administrator Tool (RSAT) is the one tool that is often overlooked. Admins are often used to the fact that they can remotely log into any computer and server on the domain, that they forget the fact that there is an even easier method of managing the many different servers in their network.

If you have not used the RSAT tools on your Windows PC before, we recommend that you do so, even if you have only one server to manage. You will find this tool very convenient and time-saving to use.

Remote Server Administration Tools (RSAT) for Windows 11

Remote Server Administration Tools (RSAT)

by Microsoft — Freeware

Remote Server Administration Tools (RSAT) 64 bit Download [Free]

Download Remote Server Administration Tools (RSAT) for Windows 11 64 bit. Install Remote Server Administration Tools (RSAT) latest (2023) full setup on your PC and laptop from FileHonor.com (100% Safe).

Lets IT administrators manage Windows Server from a remote computer.

RSAT Screenshot

Remote Server Administration Tools (RSAT) is a Remote Desktop software. Lets IT administrators manage Windows Server from a remote computer.

Download Remote Server Administration Tools (RSAT) latest version 2023 free for Windows 11 and 10. Official direct download (64 bit).

How to Download and Install for Windows 11?

  1. Click on the GREEN Download button above
  2. Choose your favorable download option. Usually go for the first download link
  3. Save Remote Server Administration Tools (RSAT) installer to your local drive
  4. Double Click on the installer to start the installation
  5. Accept Remote Server Administration Tools (RSAT) end user agreement license
  6. Follow intructions till you finish
  7. Have Fun

Technical Details

Rating
8.8 / 10
Category
Remote Desktop
Version
Latest
License
Freeware
OS
Windows 11 64 Bit
Size
95+ Mb
Updated

How to install the latest version of Remote Server Administration Tools (RSAT):

  1. Download Remote Server Administration Tools (RSAT) setup file from the above download button
  2. Double click on the downloaded setup file
  3. A smart screen will appear asking for confirmation to install the software, Click «Yes»
  4. Finally, follow the installation instructions provided by the setup file

How to uninstall — remove — Remote Server Administration Tools (RSAT) from Windows 11?

  1. Open Windows Start Menu, then open Settings
  2. From Settings >> Open Apps section
  3. All installed apps appear, then navigate to the desired app and click Uninstall
  4. Confirm, and you are done

Quick Review

Windows servers are the servers of choice for bank systems, commercial institutes and most enterprise edges. One of the handy features of these servers is the ability to control them remotely through what is know by Remote Server Administration Tools or RSAT.

RSAT allows IT administrators and users to manage Windows Server from a remote computer. In addition, the default configuration opens only those ports and enables only those services required for remote management to work.

Moreover, it allows administrators to run snap-ins and tools on a remote computer to manage features, roles and role services.

It cannot be installed on Home or Standard editions of Windows!

Important Note

RSAT is included as a set of “Features on Demand” in Windows 11. Do not download an RSAT package from this page!

Instead, just go to “Manage optional features” in Settings and click “Add a feature” to see the list of available RSAT tools. Select and install the specific RSAT tools you need. To see installation progress, click the Back button to view status on the “Manage optional features” page.

Disclaimer

Remote Server Administration Tools (RSAT) for Windows 11 is developed and updated by Microsoft. All registered trademarks, product names and company names or logos are the property of their respective owners.

Similar Software

RSAT (Remote Server Administration Tools) — это набор инструментов, разработанных Microsoft, которые позволяют администраторам управлять удаленными серверами с помощью локального компьютера. Сегодня мы рады сообщить о выпуске официальной версии RSAT Windows 11 x64 для операционных систем Windows.

RSAT Windows 11 x64 предоставляет администраторам возможность управлять различными службами и ролями Windows Server, такими как Active Directory, DNS, DHCP, Group Policy и многими другими. С помощью этого набора инструментов администраторы могут выполнять рутинные задачи удаленно, без необходимости физического присутствия на сервере.

Онлайн-магазин Microsoft Store предлагает скачать RSAT Windows 11 x64 для операционных систем Windows бесплатно. Для установки этого набора инструментов вам понадобится Windows 11 Pro или Enterprise с активированной функцией «Пакетные файлы функций». Чтобы установить RSAT Windows 11 x64, достаточно перейти в Microsoft Store, найти приложение RSAT и нажать на кнопку «Установить».

Обратите внимание, что RSAT Windows 11 x64 доступен только для операционных систем Windows 11 и не поддерживает предыдущие версии Windows.

Если вы являетесь администратором серверов Windows и ищете удобное решение для удаленного управления, то скачивание RSAT Windows 11 x64 для Windows — отличная возможность упростить вашу работу. Не упустите шанс получить доступ к полному набору инструментов для удаленного администрирования серверов Windows и скачайте RSAT Windows 11 x64 прямо сейчас!

Содержание

  1. RSAT Windows 11 x64 для Windows: официальный релиз
  2. Преимущества RSAT Windows 11 x64
  3. Как скачать и установить RSAT Windows 11 x64

RSAT Windows 11 x64 для Windows: официальный релиз

RSAT (Remote Server Administration Tools) представляет собой набор инструментов для удаленного управления серверами и службами Windows. В июне 2021 года Microsoft выпустила официальный релиз RSAT Windows 11 x64 для операционной системы Windows.

RSAT Windows 11 x64 предоставляет администраторам возможность управлять удаленными серверами с помощью графического интерфейса. Он включает в себя различные инструменты, такие как Active Directory Users and Computers, DNS Manager, DHCP Manager и другие. С помощью этих инструментов администраторы могут управлять пользователями, группами, компьютерами, DNS-записями и многими другими службами.

RSAT Windows 11 x64 для Windows поддерживает несколько версий операционной системы, включая Windows 11 Pro, Enterprise и Education. Чтобы установить и запустить RSAT, необходимо сначала проверить, что ваша версия Windows поддерживает этот инструмент.

Чтобы скачать и установить RSAT Windows 11 x64, следуйте инструкциям Microsoft. Обновление RSAT предоставит вам мощные инструменты для удаленного управления серверами, поможет вам упростить процесс администрирования и повысить эффективность вашей работы.

Преимущества RSAT Windows 11 x64

Remote Server Administration Tools (RSAT) для Windows 11 x64 представляют собой набор инструментов, который позволяет администраторам удаленно управлять серверами, работающими под управлением Windows Server. RSAT предлагает ряд преимуществ для упрощения и оптимизации администрирования.

Удобство управления. RSAT предлагает удобный и интуитивно понятный интерфейс для работы с различными серверными инструментами. Администраторам больше не нужно подключаться к серверам непосредственно, они могут выполнять все необходимые задачи удаленно, с одного места.

Широкий спектр инструментов. RSAT включает в себя широкий спектр инструментов для управления различными компонентами серверной среды: Active Directory, групповыми политиками, службами удаленного рабочего стола, DNS, DHCP, дисковым пространством и многим другим. Администраторы могут быстро и эффективно настраивать и управлять этими компонентами без необходимости установки дополнительных программ.

Расширенные возможности. RSAT предлагает администраторам расширенные возможности для управления и мониторинга серверов. Они могут отслеживать работу служб, анализировать журналы событий, настраивать безопасность, а также выполнять другие задачи, необходимые для обеспечения стабильной и безопасной работы серверов.

Высокая производительность. RSAT для Windows 11 x64 предлагает высокую производительность и скорость работы. Инструменты разработаны таким образом, чтобы обеспечить быстрый доступ к серверам и выполнение операций с минимальной задержкой. Администраторы могут эффективно выполнять свои задачи даже при работе с большими объемами данных.

В целом, RSAT Windows 11 x64 является неотъемлемым инструментом для администрирования серверной среды Windows Server. Он обеспечивает удобство, функциональность и производительность, необходимые для эффективного управления серверами и обеспечения стабильной работы всей системы.

Как скачать и установить RSAT Windows 11 x64

Remote Server Administration Tools (RSAT) позволяют администраторам управлять удаленными серверами и компьютерами с помощью графического интерфейса на локальном компьютере. В этой статье я расскажу, как скачать и установить RSAT Windows 11 x64.

1. Зайдите на официальный сайт Microsoft для загрузки RSAT: https://www.microsoft.com/ru-ru/download/details.aspx?id=100273

2. На странице загрузки выберите язык и нажмите кнопку «Скачать».

3. После того как файл загрузится, откройте его и выполните установку RSAT Windows 11 x64.

4. Следуйте инструкциям установщика и дождитесь окончания процесса установки.

5. После установки RSAT Windows 11 x64 вы сможете найти его в списке установленных программ.

Теперь вы можете использовать RSAT Windows 11 x64 для удаленного управления серверами и компьютерами с помощью графического интерфейса на своем локальном компьютере.

The quickest way is using the Settings menu.

by Milan Stanojevic

Milan has been enthusiastic about technology ever since his childhood days, and this led him to take interest in all PC-related technologies. He’s a PC enthusiast and he… read more


Updated on

In this article

  • How can I install RSAT on Windows 11?
  • 1. Use the Settings menu
  • 2. Check the RSAT features installed
  • 3. Install RSAT on Windows 11 using PowerShell
  • 3.1 Install the components all at once
  • 3.2 Install the components one by one

Installing the Remote Server Administration Tools (RSAT) on Windows 11 is not as complicated as you might think. We’ve prepared three tested methods that are quick and easy to follow. We’ve also compiled an RSAT crashes guide just in case you bump into any problems.

Is RSAT available for Windows 11?

RSAT is available on all OSs from Windows 7, including Windows 11. This excellent tool allows for remote management of other systems running the same operating system. Below are some of its features:

How we test, review and rate?

We have worked for the past 6 months on building a new review system on how we produce content. Using it, we have subsequently redone most of our articles to provide actual hands-on expertise on the guides we made.

For more details you can read how we test, review, and rate at WindowsReport.

  • Group Policy Management: RSAT contains a Group Policy Management tool that includes a Group Policy Management Console, Group Policy Management Editor, and Group Policy Starter GPO Editor.
  • Hyper-V management: Another excellent feature of this feature is the Hyper-V management tool. This includes the Hyper-V Manager snap-in and the Virtual Machine Connection remote access tool. While the Hyper-V feature is available as an option on Windows 11, you can still use it with RSAT.
  • Best Practices Analyzer: This contains the cmdlets for Windows PowerShell.

How can I install RSAT on Windows 11?

  1. Press the Start menu button in the Taskbar.
  2. Now click the Settings icon.
  3. From the left-side menu, select Apps, then click on Optional Features on the right-side menu.
  4. Now click on the View features button, which is colored blue.
  5. Type RSAT in the search tab and select all the variants you want to install. Click Next to proceed.
  6. Wait while the selected components are installed.

2. Check the RSAT features installed

  1. Right-click the Start button and select Windows Terminal (Admin) from the list.
  2. Type or paste the following command and press Enter to run it: Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State
  3. Now, you will see the list of all RSAT components installed on your computer. This way, you will know exactly what to install. In our case, there isn’t any installed.
Read more about this topic

  • Microsoft Paint Cocreator: A complete guide on the new AI tool
  • Windows 11 adds more apps to the share links feature
  • How to Make a Program Available to All Users on Windows 11
  • How to Download & Install Microsoft LifeCam Drivers on Windows 11

3. Install RSAT on Windows 11 using PowerShell

3.1 Install the components all at once

  1. Press Windows Key + X and select Windows Terminal (Admin) option.
  2. Type or paste the following command and press Enter to run it: Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
  3. The process will take a few minutes, depending on the capabilities of your system.

3.2 Install the components one by one

Note icon
NOTE

If you don’t know the tool name, you can see the list of components in Solution 2.

  1. Press Windows Key + X and choose Windows Terminal (Admin).
  2. Run the following command and replace tool-name with the actual name of the tool: Add-WindowsCapability -Online -Name tool-name

If you need more information, you can check all the RSAT components and their specifications on Microsoft’s dedicated webpage.

Unfortunately, there is no way to download the RSAT standalone installer on Windows 11. Microsoft only provides the RSAT download version for Windows 10. Also, for those trying to install RSAT on Windows 11 ARM, it is important to note that RSAT is currently unavailable.

Installing RSAT is simple, and you can do so just like you’re used to any additional feature – from the Settings app. This is the most convenient method, and we recommend it to all first-time users.

If you couldn’t install RSAT on Windows 11, check our detailed guide to complete the installation.

In the comments section below, let us know if you installed RSAT on Windows 11 or if you have any additional questions. We’d love to hear your opinion.

newsletter icon

  • Root wimax 0000 windows 10
  • Rsat windows 10 как включить
  • Root vid windows 10 64 bit что это
  • Rsat windows 10 x64 установка
  • Ricoh sp 100 драйвер windows 10 x64