Viewing Available Administration Tools:

To see the list of available RSAT tools, use the following command:

(Get-WindowsCapability -Online  | Where-Object {$_.Name -like "RSAT*"}).Name

Installing All RSAT Tools:

To install all the RSAT administration tools, execute the command:

Get-WindowsCapability -Online | Where-Object {$_.Name -like "RSAT*"} | Add-WindowsCapability -Online

Installing Specific RSAT Tools:

If you only need a particular tool, such as Active Directory, use the command:

Get-WindowsCapability -Online | Where-Object {$_.Name -like "RSAT.ActiveDirectory*"} | Add-WindowsCapability -Online

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.