Powershell give us an option to fast install any feature without the trouble/need of running windows wizard each time .
Open Powershell as administrator ! To get all the names and the current installed features type :
Get-WindowsFeature
To install “telnet client” for example, type :
Install-WindowsFeature telnet-client
Good Luck