Windows 10 rsat dism

Набор компонентов 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

This post covers the steps to install RSAT tools on Windows 10 version 1809 and later. Remote Server Administration Tools for Windows 10 lets IT administrators manage Windows Server from a remote computer running Windows 10. In the past RSAT tools were available for downloads in the form of .msu files. So one could simply download the msu file and install RSAT Tools.

Another way of deploying RSAT tools was using SCCM. Here is my blog post on deploying RSAT tools for windows 10 using SCCM.

Starting with Windows 10 October 2018 Update, RSAT is included as a set of “Features on Demand” in Windows 10. That means you do not need to download an RSAT package now. Instead, on your Windows 10 computer, go to “Manage optional features” in Settings and click “Add a feature”. You will see the list of available RSAT tools. Select and install the specific RSAT tools you need.

Install and Update Third Party Applications with Patch My PC

Install and Update Third Party Applications with Patch My PC

Suppose that I require only group policy management tool, I can simply select Group Policy Management Tools and install it. Most of all the advantage of installing it via Features on Demand is that installed features persist across Windows 10 version upgrades.

Before you plan to install RSAT tools on Windows 10 version 1809, ensure you read the below points.

  • You cannot install RSAT on computers that are running Home or Standard editions of Windows.
  • You can install RSAT only on Windows 10 Professional or Enterprise editions.

Table of Contents

Method 1 – Using Add a Feature Install RSAT Tools on Windows 10 version 1809

To install RSAT Tools on Windows 10 version 1809, click Start. Click Settings and from the settings page, click Apps.

Install RSAT Tools on Windows 10 version 1809

On the right pane, under Apps & features, click Manage optional features.

Install RSAT Tools on Windows 10 version 1809

Now click + Add a feature.

Install RSAT Tools on Windows 10 version 1809

Wait for the list of features to be populated. Scroll down until you see RSAT features. Now select any of the RSAT feature that you wish to install. In this case, I am selecting RSAT: Group Policy Management Tools feature. Click Install.

Install RSAT Tools on Windows 10 version 1809

Click the back icon and wait until the feature is installed. Now you should find Group Policy Management Tools under Start > Windows Administrative Tools.

Install RSAT Tools on Windows 10 version 1809

Method 2 – Using DISM to Install RSAT Tools on Windows 10 version 1809

In addition to installing via the graphical Settings app, you can also install specific RSAT tools via command line or automation using DISM /Add-Capability.

On Windows 10 computer, launch the command prompt as administrator. Run the below command.

DISM.exe /Online /Get-Capabilities

This command lists all the capabilities and shows whether the capability is present or not present. In this case, I will be installing the RSAT group policy management tools. Therefore right click and copy the capability identity.

Install RSAT Tools on Windows 10 version 1809

Now in the same command prompt, run the below command to install RSAT Group policy management tools.

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

The tools are installed and you will see the message that the operation is completed successfully.

Install RSAT Tools on Windows 10 version 1809 Snap8

Uninstall RSAT Feature on Windows 10

In the above steps you understood how to install RSAT feature. To uninstall the RSAT feature, go to Manage optional features. Select the RSAT feature that’s currently installed on Windows 10. Click Uninstall and this will uninstall the selected RSAT feature.

Install RSAT Tools on Windows 10 version 1809 Snap6

Still Need Help?

If you need further assistance on the above article or want to discuss other technical issues, check out some of these options.

Prajwal Desai

Prajwal Desai is a technology expert and 10 time Dual Microsoft MVP (Most Valuable Professional) with a strong focus on Microsoft Intune, SCCM, Windows 365, Enterprise Mobility, and Windows. He is a renowned author, speaker, & community leader, known for sharing his expertise & knowledge through his blog, YouTube, conferences, webinars etc.

Table of Contents

Remote Server Administration Tools (RSAT) for Windows 10 can be installed through multiple ways. We can install it through PowerShell, DISM command line using online method (by connecting to internet), or we can install it in offline mode as well using Feature on Demand package.

What is RSAT?

RSAT is a set of tools which helps Administrators to remotely manage roles and features of Windows Server such as Group Policy Management editor, Active Directory users and Computers etc from your local computer running Windows 10.

List of RSAT Windows 10 Components

Run following PowerShell command to see list of available RSAT tools. You can see the State is NotPresent, it means the tools have not been installed.

PS C:\> Get-WindowsCapability -Name RSAT* -Online 

Name                                                          State DownloadSize
----                                                          ----- ------------
Rsat.LLDP.Tools~~~~0.0.1.0                               NotPresent        23411
Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0                 NotPresent        42909
Rsat.SystemInsights.Management.Tools~~~~0.0.1.0          NotPresent        56363
Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0 NotPresent       124644
Rsat.NetworkController.Tools~~~~0.0.1.0                  NotPresent       168544
Rsat.VolumeActivation.Tools~~~~0.0.1.0                   NotPresent       216883
Rsat.IPAM.Client.Tools~~~~0.0.1.0                        NotPresent       232337
Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0               NotPresent       274229
Rsat.StorageReplica.Tools~~~~0.0.1.0                     NotPresent       462423
Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0             NotPresent       976546
Rsat.Dns.Tools~~~~0.0.1.0                                NotPresent      1333944
Rsat.CertificateServices.Tools~~~~0.0.1.0                NotPresent      1570788
Rsat.DHCP.Tools~~~~0.0.1.0                               NotPresent      1655744
Rsat.WSUS.Tools~~~~0.0.1.0                               NotPresent      1681014
Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0             NotPresent      4276409
Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0             NotPresent      5230259
Rsat.FileServices.Tools~~~~0.0.1.0                       NotPresent      5322476
Rsat.ServerManager.Tools~~~~0.0.1.0                      NotPresent      6626365
Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0            NotPresent      7025683
Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0         NotPresent      9867882
Rsat.Shielded.VM.Tools~~~~0.0.1.0                        NotPresent     18270690

Install RSAT using Windows settings

IMPORTANT: Starting with Windows 10 October 2018 Update, RSAT is included as a set of “Features on Demand” right from Windows 10/11. Do not download an RSAT package from this page. Instead, just follow the instructions below.

1️⃣ Right click on Windows Start icon then open Windows Seetings or you can press Windows + I at the same time to bring it up.

2️⃣ In the main page of the Settings page, select the App section.

3️⃣ In the App section, select Optional features link.

4️⃣ In the Optional features page, select Add a feature option.

5️⃣ Select and install the specific RSAT tools as you need. 

6️⃣ To see installation progress, click the Back button to view status on the Manage optional features page.

7️⃣ Once done, you can see the app from Start menu.

Or you can check the tools have been installed using the below PowerShell command:

PS C:\ Get-WindowsCapability -Name RSAT* -Online

Name                                                          State DownloadSize
----                                                          ----- ------------
Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0              Installed      5230259
Rsat.ServerManager.Tools~~~~0.0.1.0                       Installed      6626365

Install RSAT using PowerShell

Alternatively, you can install RSAT using PowerShell automatically.

1️⃣ Check what RSAT tools you installed using this command:

Note
Note: -Online doesn’t mean that you are connected to internet, rather it means you are making change into operating system while it up and running

PS C:\> Get-WindowsCapability -Name 'RSAT*' -Online | Select Name, State

Name                                                          State
----                                                          -----
Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0             NotPresent
Rsat.AzureStack.HCI.Management.Tools~~~~0.0.1.0          NotPresent
Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0                 NotPresent
Rsat.CertificateServices.Tools~~~~0.0.1.0                NotPresent
Rsat.DHCP.Tools~~~~0.0.1.0                               NotPresent
Rsat.Dns.Tools~~~~0.0.1.0                                NotPresent
Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0         NotPresent
Rsat.FileServices.Tools~~~~0.0.1.0                       NotPresent
Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0             NotPresent
Rsat.IPAM.Client.Tools~~~~0.0.1.0                        NotPresent
Rsat.LLDP.Tools~~~~0.0.1.0                               NotPresent
Rsat.NetworkController.Tools~~~~0.0.1.0                  NotPresent
Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0               NotPresent
Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0            NotPresent
Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0             NotPresent
Rsat.ServerManager.Tools~~~~0.0.1.0                      NotPresent
Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0 NotPresent
Rsat.StorageReplica.Tools~~~~0.0.1.0                     NotPresent
Rsat.SystemInsights.Management.Tools~~~~0.0.1.0          NotPresent
Rsat.VolumeActivation.Tools~~~~0.0.1.0                   NotPresent
Rsat.WSUS.Tools~~~~0.0.1.0                               NotPresent

2️⃣ Once you have the list of the tools, you can install the specific tools as you need as follows. For example, we’re going to install the AD DS tools:

Get-WindowsCapability -Name "Rsat.ActiveDirectory*" -Online | Add-WindowsCapability -Online
PS C:\> Get-WindowsCapability -Name "Rsat.ActiveDirectory*" -Online | Select Name, State

Name                                             State
----                                             -----
Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 Installed

To install all components of RSAT, run the below command:

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

If you no longer need RSAT, you can uninstall or removal the RSAT components, you can use following command. The command will get the list of installed RSAT component, put in into a pine then remove them using PowerShell loop.

Get-WindowsCapability -Name 'RSAT*' -Online | Where-Object {$_.State -eq 'Installed'} | Foreach {
    Remove-WindowsCapability -Name $_.Name -Online
}

Install RSAT Tools using DISM

Another option to install RSAT is use Dism command (Deployment Image Servicing and Management tool).

1️⃣ To check the status of the tool, run following command:

PS C:\> dism /online /get-capabilityinfo /capabilityname:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

Deployment Image Servicing and Management tool
Version: 10.0.22621.1

Image Version: 10.0.22621.1992

Capability Identity : Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
Name : Rsat.ActiveDirectory.DS-LDS.Tools
State : Not Present
Display Name : RSAT: Active Directory Domain Services and Lightweight Directory Services Tools
Description : Active Directory Domain Services (AD DS) and Active Directory Lightweight Directory 
Download Size : 39.77 MB
Install Size : 34.38 MB

The operation completed successfully.

2️⃣ State is showing as Not present. To install with internet and direct access to Microsoft without WSUS/SCCM in place, run the command:

PS C:\> dism /online /add-capability /capabilityname:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

Deployment Image Servicing and Management tool
Version: 10.0.19041.844

Image Version: 10.0.19045.3324

[==========================100.0%==========================]
The operation completed successfully.

The 0x800f0954 error, or missing RSAT option in the optional features, is most likely caused if we configure our machine to receive updates from a different source besides Windows Update. For example, it can be the internal Windows Server Update Services (WSUS) or Microsoft System Center Configuration Manager (SCCM) software update server.

To bypass this, run the below script to temporary disable WSUS to install RSAT. Don’t worry about it, the WSUS configuration would be changed to internal update server when GPO is applied.

$regWU = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU"
$curWU = Get-ItemProperty -Path $regWU -Name "UseWUServer" | select -ExpandProperty UseWUServer

Set-ItemProperty -Path $regWU -Name "UseWUServer" -Value 0

Restart-Service wuauserv

Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online
Set-ItemProperty -Path $regWU -Name "UseWUServer" -Value $curWU

Restart-Service wuauserv -Force

 Windows OS Hub / Windows 10 / How to Install Remote Server Administration Tools (RSAT) on Windows

The Remote Server Administration Tools (RSAT) allow you to remotely manage roles and features on Windows Server hosts from a Windows workstation. RSAT includes graphical MMC snap-ins, command line tools, and PowerShell modules. RSAT can be installed on Windows Server 2022/2019/2016 as well as on the desktop editions of Windows 10 or 11.

Contents:

  • Installing RSAT Tools on Windows 10 and 11
  • Use PowerShell to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Install Remote Server Administration Tools on Windows Server
  • Fix RSAT Installation Error 0x800f0954 on Windows
  • Offline Install RSAT on Windows Using the FoD ISO Image

Installing RSAT Tools on Windows 10 and 11

On Windows 10 and 11, RSAT is installed via the graphical panel Settings -> Apps -> Optional Features -> Add an optional feature.

install rsat via optonal features in windows 10

Type RSAT in the search bar to view available features. The following RSAT administration tools can be installed on Windows 10/11:

  • RSAT: Active Directory Domain Services and Lightweight Directory Services Tools
  • RSAT: BitLocker Drive Encryption Administration Tools for AD
  • RSAT: Active Directory Certificate Services Tools
  • RSAT: DHCP Server Tools
  • RSAT: DNS Server Tools
  • RSAT: Failover Clustering Tools
  • RSAT: File Services Tools
  • RSAT: Group Policy Management Tools – GPO management console and the Group Policy module for PowerShell
  • 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 server console)
  • RSAT: Windows Server Update Services Tools.

Select the required RSAT components and click Install.

You can only install RSAT on Windows 10/11 Professional and Enterprise, not on Windows Home editions.

Some RSAT components may require a reboot after installation.

RSAT components are not part of the Windows image and are available as Features on Demand. This means that your computer must be connected to the Internet in order to install RSAT. Windows downloads and installs RSAT binary files from Microsoft Update servers.

The RSAT package was installed as a separate update (MSU file) in previous versions of Windows (before build Windows 10 1809). The KB2693643 update must be downloaded from the Microsoft website and installed manually (https://www.microsoft.com/en-us/download/details.aspx?id=45520).

After installing the KB2693643 update, you can enable the required RSAT components from Control Panel -> Programs and Features -> Turn Windows features on or off (optionalfeatures.exe). Expand the Remote Server Administration Tools and select the admin tools that you want to install.

If you try to install KB2693643 on a newer build of Windows 10 or Windows 11, you will receive an error:

Windows Update Standalone Installer encountered and error: 0x8024001d

After installation, the RSAT graphical MMC snap-ins will be available in the Administrative Tools section of the Control Panel (Control Panel\System and Security\Administrative Tools) or under the folder %ProgramData%\Microsoft\Windows\Start Menu\Programs\Administrative Tools.

RSAT graphical snap-ins in Administrative tools of Control panel

Use PowerShell to Install Remote Server Administration Tools (RSAT) on Windows

You can install the RSAT management components on Windows 10 and 11 using PowerShell.

The following PowerShell command lists the RSAT components installed on your computer

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

In this example, the DHCP and DNS management tools are installed (Installed), and all other RSAT modules are missing (NotPresent).

get-windowscapability: list installed rsat items with powershell

You can use the Add-WindowsCapability cmdlet to install RSAT features on Windows.

To install a specific RSAT tool, such as AD management tools (including the ADUC console and the Active Directory module for Windows PowerShell), run the command:

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

To install the DNS management console and the PowerShell DNSServer module, run:

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

The following are sample commands for installing other RSAT components:

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.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.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

The DISM.exe tool can also be used to install RSAT on Windows:

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

To install only the missing RSAT tools, run:

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

Add-WindowsCapability install rsat using powershell

Now check that the RSAT tools are installed (Installed state).

all rsat tools installed in windows 10 1809

To uninstall the RSAT feature on Windows, use the command:

Remove-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

How to Install Remote Server Administration Tools on Windows Server

No Internet access is required to install RSAT on Windows Server. The RSAT tools can be installed when you install the appropriate roles or features of Windows Server, or you can install them by using the Server Manager (Add Roles and Features -> Features -> Remote Server Administration Tools).  All RSAT components are divided into two sections: Feature Administration Tools and Role Administration Tools. Select the tools you want to install and click Next -> Next.

windows server: install remote server administration tools

Use the Install-WindowsFeature cmdlet to install RSAT on Windows Server. List RSAT tools available on Windows Server 2022, 2019, and 2016:

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

Specify the name of the selected RSAT component to be installed. For example, let’s install the RDS Licensing Diagnosis console:

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

windows server 2022 and 2019: Install-WindowsFeature RSAT

Install the Hyper-V Manager remote management console and the Hyper-V PowerShell module:

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

You can access installed graphical RSAT consoles from Server Manager or through the Control Panel.

Fix RSAT Installation Error 0x800f0954 on Windows

If your Windows computer is configured to receive updates from a local update server (WSUS) or SCCM (Configuration Manager) SUP, you will receive an error message when you try to install RSAT using  the GUI, Add-WindowsCapability or DISM:

0x800f0954
No features to install

DISM add-capability rsat error 0x800f0954

In this case, Windows attempts to download the RSAT package from your local update server and returns 0x800f0954 error.

To ignore local WSUS during the installation of additional Windows features and Features On Demand (including RSAT), you must enable a special Group Policy option

  1. Open the local GPO editor gpedit.msc or use the domain Group Policy Management Console (gpmc.msc);
  2. Go to the  Computer Configuration -> Administrative Templates -> System;
  3. Enable the policy Specify settings for optional component installation and component repair, and check the option Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS);
    windows 10 1903 policy Specify settings for optional component installation and component repair, and check the option Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS)

  4. Save the changes and update Group Policy settings (gpupdate /force);
  5. Restart the Windows Update service:
    net stop wuauserv
    net start wuauserv

The installation of RSAT using PowerShell or DISM should now be completed without any errors.

Connection to Microsoft Update when retrieving RSAT components may be blocked by some Windows registry settings. Change the values of the following registry parameters in the HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate key if you get error 0x8024002e when installing RSAT:

  • DoNotConnectToWindowsUpdateInternetLocations = 0
  • DisableWindowsUpdateAccess = 0

Then restart the wuauserv service.

Offline Install RSAT on Windows Using the FoD ISO Image

If you cannot access the Microsoft Update servers directly from your workstation, you can use the offline installation of RSAT (recommended for disconnected networks without Internet access).

You must download the ISO image containing the FoD components for your version of Windows from the Microsoft website (or from the Volume Licensing Service Center, VLSC) to install RSAT offline.

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

For example, for Windows 10 22H2 x64 you need to download the image file 19041.1.191206-1406.vb_release_amd64fre_FOD-PACKAGES_OEM_PT1_amd64fre_MULTI.iso (about 5 GB). Extract the contents of the ISO image to the shared network folder. You will get a set of *.CAB files, including RSAT components.

Now, to install RSAT components on a Windows workstation, specify the path to this shared network directory with FoD in the -Source parameter:

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

Add-WindowsCapability install rsat from shared folder FOD source

You can also use the above Group Policy option to specify the path to the directory containing the FoD image components. Specify the UNC path to the directory containing the FoD files in the Alternative source file path parameter.

windows 10 1903 fod source path via gpo

Or, you can set this parameter in the registry with a GPP by specifying the path to the FoD directory in the LocalSourcePath parameter (REG_Expand_SZ) under the registry key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Servicing.
Users will now be able to install the RSAT components in Windows on their own using the graphical interface of Manage Optional Features.

Common Remote Server Administration Tools Installation Errors on Windows:

  • 0x8024402c, 0x80072f8f – Windows cannot access the Microsoft Update servers to download RSAT files. Check that you have Internet access or install the components from a local FoD image: Add-WindowsCapability -Online -Name Rsat.Dns.Tools~~~~0.0.1.0 -LimitAccess -Source E:\RSAT\
  • 0x800f081f – check the path to the directory containing the RSAT components specified in the  –Source parameter;
  • 0x800f0950 – the error is similar to 0x800f0954;
  • 0x80070490 – check and repair your Windows image using DISM: DISM /Online /Cleanup-Image /RestoreHealth

In this guide, I’ll show you how to install the RSAT tools on Windows 10, Windows 11, and Windows Server. I’ll also show you how to install RSAT using PowerShell.

To remotely manage Active Directory, DNS, DHCP, and other Windows features you will need the Remote Server Administration Tools (RSAT) installed.

  • Install RSAT Tools on Windows 10
  • Install RSAT Tools on Windows 11
  • Install RSAT Tools on Windows Server
  • How to Install RSAT using PowerShell

Note: Starting with Windows 10 October 2018 Update, the RSAT tools no longer need to be downloaded. They are now included with the Windows build and just need to be installed. RSAT tools are only supported on Windows Pro and Enterprise versions of Windows 10 and 11.

1. Open Apps & features and click on “Optional features”

2. Click on Add a feature.

3. Type rsat and then select the RSAT tools you want to install.

In this example, I’ll install the Active Directory, DHCP, and DNS tools.

4. Click install to start the installation.

When the installation is complete the status will say installed.

You can now navigate to the start -> Windows Administrative Tools to open one of the RSAT tools.

Install RSAT on Windows 11

On Windows 11 go to settings and then Apps.

Click on Optional Features.

Click on the View Features button.

Type in rsat and select the tools you want to install.

In this example, I’ll select the Active Directory Domain Services tool.

Click “Next”.

Click “Install”.

When the installation is complete, you can access the tools by going to all apps -> Windows Tools.

Install RSAT on Windows Server

These steps work for Server 2016, 2019, and 2022.

1. Open the Server Manager and click on Add roles and features

Click Next.

Select “Role-based or featured-based installation” and click next

Select your server and click next.

For server roles click Next. (We are not adding any server roles).

For features scroll down to Remote Server Administration Tools).

Select the tools you want to install and click next.

Confirm the selections and click install.

When the installation is complete the tool can be accessed from start -> Windows Administration Tools

Using PowerShell to Install RSAT

You can install individual RSAT tools or all of them using Powershell.

Example 1.Install all RSAT tools run the below command.

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

Example 2. Install Specific RSAT Tool using PowerShell

To install individual tools you will use the Add-WindowsCapability -Online -Name command followed by the PowerShell tool name.

In this example, I’ll install the Active Directory Domain Servers tools using the command below.

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

Use the names below to install other RSAT tools via PowerShell.

Active Directory Domain Servers and Lightweight Directory Services Tools: Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

BitLock Drive Encryption Administration Tools: Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0

Active Directory Certificate Services:
Rsat.CertificateServices.Tools~~~~0.0.1.0

DHCP Server Tools:
Rsat.DHCP.Tools~~~~0.0.1.0

DNS Server Tools:
Rsat.Dns.Tools~~~~0.0.1.0

Failover Clustering Tools:
Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0

File Services Tools:
Rsat.FileServices.Tools~~~~0.0.1.0

Group Policy Management Tools:
Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0

IP Address Management (IPAM) Client:
Rsat.IPAM.Client.Tools~~~~0.0.1.0

Data Center Bridging LLDP Tools:
Rsat.LLDP.Tools~~~~0.0.1.0

Network Controller Management Tools:
Rsat.NetworkController.Tools~~~~0.0.1.0

Network Load Balancing Tools:
Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0

Remote Access Management Tools:
Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0

Remote Desktop Services Tools:
Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0

Server Manager:
Rsat.ServerManager.Tools~~~~0.0.1.0

Shielded VM Tools:
Rsat.Shielded.VM.Tools~~~~0.0.1.0

Storage Migration Service Management Tools:
Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0

Storage Replica Module for Windows PowerShell:
Rsat.StorageReplica.Tools~~~~0.0.1.0

System Insights Module for Windows PowerShell:
Rsat.SystemInsights.Management.Tools~~~~0.0.1.0

Volume Activation Tools:
Rsat.VolumeActivation.Tools~~~~0.0.1.0

Windows Server Update Services Tools:
Rsat.WSUS.Tools~~~~0.0.1.0

You can use PowerShell to view which RSAT tools are installed with the following command.

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

Simplify Active Directory Management with AD Pro Toolkit

Managing Active Directory with the RSAT tools has its limitations, such as bulk editing and no reporting. Fortunately, the AD Pro Toolkit simplifies bulk management and reporting with its comprehensive set of Active Directory Tools. The toolkit also includes a built in scheduler to automate tasks and reporting.

AD Pro Toolkit Key Features:

  • Bulk import users
  • Bulk update users
  • Cleanup inactive user and computer accounts
  • User management tools
  • Quickly unlock and reset user passwords
  • Manage user group membership
  • Onboard and offboard users
  • 200+ built-in Active Directory reports

In addition to the management tools, the toolkit includes over 200 built in Active Directory Reports. Create security reports, compliance reports, customize reports and send email reports.

Try the AD Pro Toolkit for 14 days and experience the All-in-One Toolkit that makes managing Active Directory fast, easy and efficient. Download AD Pro Toolkit now and try it for yourself. Easy to Install and get started in minutes

I hope you found this article helpful. If you have questions leave a comment below.

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Legendary не запускается windows 10
  • Windows 10 лого пнг
  • Avto test 1000 savol skachat windows
  • Что такое проверка подлинности windows
  • Скрипт удаления ненужного по windows 10