安装 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"