Open up PowerShell and get a list of all the available Remote Server Administration Tools (RSAT) on Windows 11
Get-WindowsCapability -Name RSAT* -Online
Install the specific tool with the following command …
Add-WindowsCapability -Online -Name NAME_OF_TOOL
I want to use ldp.exe to troubleshoot LDAP connections. To do so, I want to install AD DS and LDS tools with the following …
Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
You can verify what tools are installed with the following command:
Get-WindowsCapability -Name RSAT* -Online | Where-Object State -eq 'Installed'