如何使用 PowerShell 连接到 SSH?
可以使用 PowerShell 中的 SSH 命令使用 PowerShell 连接非 Windows 目标计算机。为此,你需要使用以下格式。
ssh username@servername
以下示例演示了如何连接非 Windows 目标计算机。
PS C:\> ssh [email protected]
输出
首次对任何新服务器运行此命令后,设置都将添加到用户配置文件中的路径.ssh/known_hosts 中。
广告
可以使用 PowerShell 中的 SSH 命令使用 PowerShell 连接非 Windows 目标计算机。为此,你需要使用以下格式。
ssh username@servername
以下示例演示了如何连接非 Windows 目标计算机。
PS C:\> ssh [email protected]
首次对任何新服务器运行此命令后,设置都将添加到用户配置文件中的路径.ssh/known_hosts 中。