optionalfeatures.exe→ Haken entfernen und mit OK bestätigen
Start → PowerShell → Rechtsklick → Als Administrator ausführen
Enable-WindowsOptionalFeature -Online -FeatureName NetFx3
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
Enable-WindowsOptionalFeature -Online -FeatureName TelnetClient
Enable-WindowsOptionalFeature -Online -FeatureName TFTP
Disable-WindowsOptionalFeature -Online -FeatureName WindowsMediaPlayer
Disable-WindowsOptionalFeature -Online -FeatureName Internet-Explorer-Optional-amd64
Get-WindowsOptionalFeature -Online | Where-Object {$_.State -eq "Enabled"}
| Out-File kannst du die Ausgabe speichern:
Get-WindowsOptionalFeature -Online | Where-Object {$_.State -eq "Enabled"} > C:\Temp\features.txt
wsl --status
telnet
Windows-Features lassen sich sowohl bequem per GUI als auch automatisiert per PowerShell verwalten. Für Administratoren ist die PowerShell der schnellere und reproduzierbare Weg.