SCP between two Windows machines?

Greetings. Now that Windows 10 has native SSH and SCP I decided to try SCP between two windows machines. However I was unable to establish a connection. The following is an example of how I tried to copy files with SCP and just connect using SSH.

scp -r \d\videos username@hostip:\c\users\username\documents
ssh username@hostip

Both of these timed out. Are there any additional steps I should know about?

There needs to be an sshd running

https://winscp.net/eng/docs/guide_windows_openssh_server

2 Likes

You need to also enable the SSH server feature if I remember right

1 Like

I thought the sshd process was the server?

or did Peeanio snipe you?

I just found this.
https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse

Looks like SSH server is an optional feature that needs to be enabled. Thanks everyone for the help.