0 Pluspunkte 0 Minuspunkte

Ich habe versucht die RSAT Tools mit Powershell zu installieren.

PS C:\WINDOWS\system32> Add-WindowsCapability -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -Online

Path          :
Online        : True
RestartNeeded : False

Aber obwohl ich keine Fehlermeldung o.ä bekomme funktioniert es einfach nicht.

PS C:\WINDOWS\system32> get-aduser
get-aduser : The term 'get-aduser' is not recognized as the name of a cmdlet, function, script file, or operable
program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ get-aduser                                                                                                            
+ ~~~~~~~~~~                                                                                                                
+ CategoryInfo : ObjectNotFound: (get-aduser:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException 

Wie installiere ich die RSAT Tools auf Windows Server 2022?

von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Ich hatte einmal ein ähnliches Problem, die RSAT Tools waren installiert wurden aber nicht gefunden. Ich habe dann die Lightweight Directory Services installiert

Add-WindowsFeature -Name ADLDS

und danach wieder deinstalliert. 

Remove-WindowsFeature -Name ADLDS

Dabei wurden die Tools anscheinend mit installiert bzw repariert, jedenfalls hat es danach funktioniert.

von (638 Punkte)