Apr 01 2022 04:23 AM - last edited on Jun 06 2024 04:50 PM by EricStarker
Apr 01 2022 04:23 AM - last edited on Jun 06 2024 04:50 PM by EricStarker
Remote Server Administration Tools (RSAT) is an essential tool for Windows administrators. This tool is designed to help administrators manage and maintain the servers from a remote location. Remote Server Administration Tools (RSAT) are used by IT administrators to handle Windows Server roles and features. It was introduced in Windows Server 2008 R2.
Viewing Remote Server Administration Tools List in Windows 11
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State
Related: (external link removed by moderator)
Installing Remote Server Administration Tools in Windows 11
Read More At: (external link removed by moderator)
Oct 18 2022 09:22 AM
Oct 18 2022 11:35 AM
Nov 03 2022 10:26 PM
Nov 09 2022 06:21 AM
I am getting this message "'Get-WindowsCapability' is not recognized as an internal or external command, operable program or batch file." can you say what I am doing wrong
Nov 11 2022 06:18 AM
Here is the missing piece.
After Clicking Optional Features, Click the View features at the top then you can scroll down to the RSAT options. Click the check box and then Next to install.
Hope that helps.
Nov 14 2022 11:12 AM
@EdieE1835 RSAT is located under 'add an optional feature' - View Features.
You will have to click on each RSAT tool.
Nov 14 2022 11:15 AM
Dec 12 2022 10:31 AM
Dec 30 2022 05:52 AM - edited Dec 30 2022 06:06 AM
I am including both steps here.
Run PowerShell as admin, then:
# Get RSAT items that are not currently installed:
$install = Get-WindowsCapability -Online |
Where-Object {$_.Name -like "RSAT*" -AND $_.State -eq "NotPresent"}
# Install the RSAT items that meet the filter:
foreach ($item in $install) {
try {
Add-WindowsCapability -Online -Name $item.name
}
catch [System.Exception] {
Write-Warning -Message $_.Exception.Message
}
}
Jan 03 2023 06:31 PM
Jan 03 2023 06:39 PM
Jan 05 2023 04:36 AM
Jan 05 2023 05:26 AM
Mar 20 2023 06:56 AM
Apr 11 2023 10:35 AM
Apr 24 2023 02:54 PM
@IrritatedPotato All RSAT's are Notpresent And while puttting ns lookup command in cmd prompt, it shows server is unknown and address is alphanumeric
Jul 15 2023 07:06 AM - edited Jul 15 2023 07:07 AM
how can i uninstall RSAT? using powershell, thank you..@_jorel
Jul 15 2023 06:01 PM
@aswan1380, this can be done similar to the method used to install the RSAT tools.
Again, open PowerShell as admin, then run the following code, which will remove all RSAT tools that are currently installed.
# Get RSAT items that are currently installed:
$remove = Get-WindowsCapability -Online |
Where-Object {$_.Name -like "RSAT*" -AND $_.State -eq "Installed"}
# Remove the RSAT items that meet the filter:
foreach ($item in $remove) {
try {
Remove-WindowsCapability -Online -Name $item.Name
}
catch [System.Exception] {
Write-Warning -Message $_.Exception.Message
}
}