Windows 10 - RSAT - Tools:

Unter Windows 10 gibt es ebenfalls die Möglichkeit, die RSAT-TOOLs entwerder über GU (Windows Feature hinzufügen) oder über Powershell hinzuzufügen;

ab Vers. 2018: ist es per FoD (FeatureOnDemand) bereits includiert, welches noch über Einstellungen --> Apps --> Optionale Features -->> Feature hinzufügen RSAT integriert werden muss

Hier über Powershell und zus. als Beispiel noch die Module Bitlocker Verwaltung sowie Failovercluster:

 

Abfrage, ob und welche Module bereits installiert sind:

Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

Ausgabe:

PS H:\> Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

DisplayName                                                                              State
-----------                                                                              -----
RSAT: Tools für Active Directory Domain Services und Lightweight Directory Services  Installed
RSAT: Verwaltungshilfsprogramme für die BitLocker-Laufwerkverschlüsselung           NotPresent
RSAT: Tools für Active Directory-Zertifikatdienste                                  NotPresent
RSAT: DHCP-Servertools                                                               Installed
RSAT: DNS-Servertools                                                                Installed
RSAT: Failoverclustering-Tools                                                       Installed
RSAT: Tools für Dateidienste                                                         Installed
RSAT: Tools zur Gruppenrichtlinienverwaltung                                         Installed
RSAT: IP-Adressverwaltungsclient (IPAM)                                             NotPresent
RSAT: Data Center Bridging LLDP-Tools                                               NotPresent
RSAT: Netzwerkcontroller-Verwaltungstools                                            Installed
RSAT: Tools für Netzwerklastenausgleich                                             NotPresent
RSAT: Tools für die Remotezugriffsverwaltung                                         Installed
RSAT Tools für Remotedesktopdienste                                                  Installed
RSAT: Server-Manager                                                                 Installed
RSAT: Abgeschirmte VM-Tools                                                         NotPresent
RSAT: Storage Migration Service Management-Tools                                    NotPresent
RSAT: Speicherreplikatmodul für Windows PowerShell                                  NotPresent
RSAT: System Insights-Modul für Windows PowerShell                                  NotPresent
RSAT: Volumenaktivierungstools                                                      NotPresent
RSAT: Windows Server Update Services-Tools                                          NotPresent

 

Installation der Module:

Add-WindowsCapability -Online -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0

 

erneute Abfrage der Komponenten:

PS H:\> Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

DisplayName                                                                              State
-----------                                                                              -----
RSAT: Tools für Active Directory Domain Services und Lightweight Directory Services  Installed
RSAT: Verwaltungshilfsprogramme für die BitLocker-Laufwerkverschlüsselung            Installed
RSAT: Tools für Active Directory-Zertifikatdienste                                  NotPresent
RSAT: DHCP-Servertools                                                               Installed
RSAT: DNS-Servertools                                                                Installed
RSAT: Failoverclustering-Tools                                                       Installed
RSAT: Tools für Dateidienste                                                         Installed
RSAT: Tools zur Gruppenrichtlinienverwaltung                                         Installed
RSAT: IP-Adressverwaltungsclient (IPAM)                                             NotPresent
RSAT: Data Center Bridging LLDP-Tools                                               NotPresent
RSAT: Netzwerkcontroller-Verwaltungstools                                            Installed
RSAT: Tools für Netzwerklastenausgleich                                             NotPresent
RSAT: Tools für die Remotezugriffsverwaltung                                         Installed
RSAT Tools für Remotedesktopdienste                                                  Installed
RSAT: Server-Manager                                                                 Installed
RSAT: Abgeschirmte VM-Tools                                                         NotPresent
RSAT: Storage Migration Service Management-Tools                                    NotPresent
RSAT: Speicherreplikatmodul für Windows PowerShell                                  NotPresent
RSAT: System Insights-Modul für Windows PowerShell                                  NotPresent
RSAT: Volumenaktivierungstools                                                      NotPresent
RSAT: Windows Server Update Services-Tools                                          NotPresent

Installierbare Komponenten:

Add-WindowsCapability –online –Name “Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0”
Add-WindowsCapability –online –Name “Rsat.Dns.Tools~~~~0.0.1.0”
Add-WindowsCapability -Online -Name Rsat.FileServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.IPAM.Client.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.LLDP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkController.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.CertificateServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.DHCP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.ServerManager.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.Shielded.VM.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageReplica.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.VolumeActivation.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.WSUS.Tools~~~~0.0.1.0

Alle Module installieren:

Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online

 

 

 

© 2024 ziggymania.de Designed S.Wommer