install Telnet Client with Powershell
you can easily check if any program is installed on your server with the command
1 |
PS C:\Get-WindowsFeature |
for any specific program ,just type it after
1 |
PS C:\Get-WindowsFeature "telnet-client" |
if its already installed you’ll get the result :
if it isn’t installed ,simply type online :
1 |
PS C:\>Add-WindowsFeature "telnet-Client" |
(Visited 1,936 times, 1 visits today)