Difference between revisions of "linux to windows powershell over ssh"
From thelinuxwiki
(Created page with "==description== Microsoft Windows [Version 10.0.18363.2274] ==install openssh server on windows== from powershell on windows... check software status PS C:\WINDOWS\system3...") |
|||
Line 10: | Line 10: | ||
install openssh-server | install openssh-server | ||
− | PS C:\WINDOWS\system32> Add-WindowsCapability -Online -Name OpenSSH.Server | + | PS C:\WINDOWS\system32> Add-WindowsCapability -Online -Name OpenSSH.Server |
<br>Path : | <br>Path : | ||
Online : True | Online : True |
Latest revision as of 17:44, 27 May 2025
description
Microsoft Windows [Version 10.0.18363.2274]
install openssh server on windows
from powershell on windows...
check software status
PS C:\WINDOWS\system32> Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'
install openssh-server
PS C:\WINDOWS\system32> Add-WindowsCapability -Online -Name OpenSSH.Server
Path : Online : True RestartNeeded : False
at this point the software is installed but config files have NOT be created yet.