如何从 PowerShell Core 提示符安装 Telnet

如何从 PowerShell Core 提示符安装 Telnet

安装 Telnet电源外壳你可以运行:

Install-WindowsFeature -name Telnet-Client

不幸的是,这似乎不起作用PowerShell 核心会产生以下错误:

Install-WindowsFeature : The term 'Install-WindowsFeature' is not recognized as the name of a cmdlet

PowerShell Core 中安装 Telnet 的等效命令是什么?

使用 Windows 10 版本 2004,Insider 计划

答案1

在提升的 shell 中运行:

Enable-WindowsOptionalFeature -Online -FeatureName "TelnetClient"

答案2

安装 Telnet 的另一种方法是通过 DISM:

dism /online /Enable-Feature /FeatureName:TelnetClient

如果 PowerShellInstall-WindowsFeature和 DISM 都不适合您,则 Microsoft 不会为您的 Windows 版本提供 Telnet。

您可以安装 巧克力味 然后安装它的包 远程登录 使用以下命令:

choco install telnet

相关内容