Windows 11 Simplifies RSAT Installation via Settings and PowerShell

Apps & Games / Desktop / Windows / Windows 11 Simplifies RSAT Installation via Settings and PowerShell
07 Aug 2024

Streamlining Remote Server Management with RSAT on Windows 11

Remote Server Administration Tools, commonly referred to as RSAT, serve as an essential suite for IT administrators tasked with managing remote Windows servers. Unlike typical software that can be downloaded from the internet, RSAT is integrated into Windows, requiring activation before use. For those navigating the intricacies of Windows 11, the installation and uninstallation of RSAT can be accomplished through two primary methods: the Windows Settings app and Windows PowerShell.

How to Install RSAT from Windows 11 Settings

To enable RSAT features via the Windows Settings app, follow these straightforward steps:

  1. Open the Settings from the Start menu.
  2. Select System from the side menu.
  3. Scroll down and click on Optional features.
  4. In the “Add an optional feature” section, click on View features.
  5. Type “rsat” in the search bar to find all available RSAT features.
  6. A list of RSAT tools, including Server Manager, Remote Desktop Services, and Volume Activation tools, will appear.
  7. Select the checkboxes next to the desired RSAT tools and click on Next.
  8. Finally, click on Add, prompting Windows to begin downloading the selected tools.

Once the installation is complete, you can sort the installed tools by date to easily access the most recent additions. A helpful tip is to search for the installed tool to view its executable and get started effectively.

How to Install RSAT Using Windows PowerShell

For those who prefer command-line interfaces, RSAT can also be installed using Windows PowerShell. Here’s how:

  1. Open the Start menu, type “powershell,” and select Windows PowerShell.
  2. In the side panel, choose Run as Administrator and confirm any prompts.
  3. Once PowerShell is open, enter the following command to view all available RSAT tools and their installation status:
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

To install a specific RSAT tool, copy its name and use the following command, replacing ‘Rsat.DHCP.Tools~~~~0.0.1.0’ with the desired tool:

Get-WindowsCapability -Name 'Rsat.DHCP.Tools~~~~0.0.1.0' -Online | Add-WindowsCapability -Online

How to Uninstall RSAT in Windows 11

Uninstalling RSAT is equally straightforward, with two methods available: through the Windows Settings app or via PowerShell.

  1. Navigate to Settings > System > Optional Features.
  2. Utilize the search box to locate the installed RSAT tool.
  3. Select the tool you wish to uninstall and click on Remove.

Alternatively, to remove RSAT using PowerShell, launch it as an administrator and execute the following command:

Get-WindowsCapability -Name 'Rsat.DHCP.Tools~~~~0.0.1.0' -Online | Remove-WindowsCapability -Online

Be sure to replace ‘Rsat.DHCP.Tools~~~~0.0.1.0’ with the specific tool you intend to remove. This comprehensive guide equips you with the knowledge to manage RSAT effectively, whether adding or removing tools as needed. Should any questions arise during the process, feel free to reach out for assistance.

How to install remote server administration tools (RSAT) on Windows 11?

To install RSAT on Windows 11, follow these steps: 1. Open Settings by pressing Win + I. 2. Go to 'Apps' > 'Optional Features'. 3. Click 'View features' next to 'Add an optional feature'. 4. In the search box, type 'RSAT'. 5. Select the desired RSAT tools (e.g., AD DS, DHCP, DNS) from the list. 6. Click 'Install'. The selected tools will be installed and available in the Start menu under 'Windows Administrative Tools'.

How to install remote server administration tools (RSAT) on Windows 7?

To install RSAT on Windows 7, follow these steps: 1. Download the RSAT package for Windows 7 from the Microsoft Download Center. Ensure you select the correct version (x86 or x64) matching your system. 2. Run the installer and follow the on-screen instructions to complete the installation. 3. After installation, go to 'Control Panel' > 'Programs' > 'Turn Windows features on or off'. 4. In the features list, enable the RSAT tools you need by checking their boxes. 5. Click 'OK' to apply the changes. The tools will be available in the Administrative Tools section in the Control Panel.
Update: 07 Aug 2024