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 commentaire

Laisser un commentaire

Emplacement de l’avatar

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

Ce site utilise Akismet pour réduire les indésirables. En savoir plus sur comment les données de vos commentaires sont utilisées.