PowerShell 技能连载 - 试用新的 SSH 远程操作

如果您想试用 SSH 而非 WinRM 的新 PowerShell 远程操作替代方案,请确保先安装了 PowerShell 7。

接下来,在 PowerShell 7 中,安装以下模块:

1
PS> Install-Module -Name Microsoft.PowerShell.RemotingTools -Scope CurrentUser

一旦安装了模块,就可以在提升权限的 PowerShell 7 Shell 中,仅需一个调用即可启用基于 SSH 的新远程处理:

1
PS> Enable-SSHRemoting

安装完成后,打开提升的 PowerShell 7 Shell,然后尝试远程连接到您自己的计算机上:

1
PS> Enter-PSSession -HostName $env:computername -UserName remotingUser

一旦能按预期运行后,就可以使用相同的技术将跨平台从任何 PowerShell 7 实例远程连接到另一个实例。

PowerShell 技能连载 - 试用新的 SSH 远程操作

http://blog.vichamp.com/2020/10/23/test-driving-new-ssh-remoting/

作者

吴波

发布于

2020-10-23

更新于

2022-07-06

许可协议

评论