Difference between revisions of "linux to windows powershell over ssh"

From thelinuxwiki
Jump to: navigation, search
(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[[User:Nighthawk|Nighthawk]] ([[User talk:Nighthawk|talk]]) 17:43, 27 May 2025 (UTC)0.0.1.0
+
  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.