Home
/
...
/
Windows
/
OpenSSH Server on WIndows
Search
Try Notion
OpenSSH Server on WIndows
添加OpenSSH服务器
示意图
修改Default Shell(CMD to Powershell)
代码
New-ItemProperty
-
Path
"HKLM:\SOFTWARE\OpenSSH"
-
Name DefaultShell
-
Value
"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"
-
PropertyType String
-
Force
Copy
PowerShell
参考
适用于 Windows 的 OpenSSH 服务器配置
本主题介绍了适用于 OpenSSH 服务器 (sshd) 的特定于 Windows 的配置。 OpenSSH 在 OpenSSH.com 上在线维护有关配置选项的详细文档,本文档集中没有重述。 默认命令 shell 提供用户使用 SSH 连接到服务器时看到的体验。 初始默认 Windows 是 Windows Command shell (cmd.exe)。 Windows 还包括了 PowerShell 和 Bash,第三方命令 shell 也可用于 Windows,并可配置为服务器的默认 shell。 若要设置默认命令 shell,请首先确认 OpenSSH 安装文件夹是否位于系统路径上。 对于 Windows,默认安装文件夹为 SystemDrive:WindowsDirectory\System32\openssh。 以下命令显示当前路径设置,并向其中添加默认的 OpenSSH 安装文件夹。 通过将 shell 可执行文件的完整路径添加到 \SOFTWARE\OpenSSH 字符串值 DefaultShell 中的 Computer\HKEY_LOCAL_MACHINE\SOFTWARE\OpenSSH,在
https://docs.microsoft.com/zh-cn/windows-server/administration/openssh/openssh_server_configuration
设置SSHD服务自启动和
代码
gsudo
Set-Service
sshd
-
StartupType Automatic gsudo
Set-Service
ssh
-
agent
-
StartupType Automatic gsudo
Start-Service
sshd gsudo
Start-Service
ssh
-
agent
Copy
PowerShell
参考
Windows Server 2019安装OpenSSH Server简明教程_寰宇001的博客-CSDN博客
MS酋长之前已经介绍过Windows10已原生支持OpenSSH远程管理功能,那么作为服务器专用的Windows Server 2019更少不了要内置OpenSSH Server组件了。只不过OpenSSH Server默认是可选功能,同样需要安装才能使用。下面MS酋长就简要分享一下通过运行PowerShell命令为Windows Server 2019安装OpenSSH Server远程管理组件的方法。 右键点击开始按钮(或按Win+X组合键)弹出系统快捷菜单,选择"Windows PowerShell(管理员)",在打开的"管理员: Windows PowerShell"窗口中输入并回车运行以下命令: Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 从返回的提示信息可以看到,安装完成后无需重启系统即可生效。 而且比较省心的是,Windows Server 2019 会自动把OpenSSH Server添加到防火墙允许列表中。 然后我们继续运行以下命令启动 sshd 和 ssh-agent 服务并设置为自动启动: Set-Service sshd -StartupType Automatic Set-Service ssh-agent -StartupType Automatic Start-Service sshd Start-Service ssh-agent 好的,现在已经成功安装OpenSSH,快连接你的服务器试试吧。 参考链接 : Windows Server 2019安装OpenSSH Server简明教程 : https://mp.weixin.qq.com/s/TX37gKbdxeZ2sVA9GMStTw
https://blog.csdn.net/qq_40907977/article/details/105906459
大功告成